1
0
mirror of https://github.com/flarum/core.git synced 2025-07-23 17:51:24 +02:00

API for syncing added/removed posts after a discussion is updated

This commit is contained in:
Toby Zerner
2015-05-04 12:17:26 +09:30
parent ed191ca7e4
commit 0d9a3283db
2 changed files with 14 additions and 2 deletions

View File

@@ -78,8 +78,8 @@ class Discussion extends Model {
var title = prompt('Enter a new title for this discussion:', currentTitle);
if (title && title !== currentTitle) {
this.save({title}).then(discussion => {
if (app.current.discussion && app.current.discussion().id() === discussion.id()) {
discussion.addedPosts().forEach(post => app.current.stream().addPostToEnd(post));
if (app.current instanceof DiscussionPage) {
app.current.stream().sync();
}
m.redraw();
});