FIX: Make sure new user narrative returns toggleBookmark promise

* the call to this.super() was not returned so there is no promise
  to chain .then() with, causing errors for bookmarks with reminders
This commit is contained in:
Martin Brennan 2020-04-24 13:13:30 +10:00
parent 8b0ac092d8
commit 6df22638e1
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ function initialize(api) {
this.appEvents.trigger("post-stream:refresh", { id: this.id });
});
}
this._super();
return this._super();
}
});