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:
parent
8b0ac092d8
commit
6df22638e1
|
@ -32,7 +32,7 @@ function initialize(api) {
|
|||
this.appEvents.trigger("post-stream:refresh", { id: this.id });
|
||||
});
|
||||
}
|
||||
this._super();
|
||||
return this._super();
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue