diff --git a/app/assets/javascripts/discourse/models/post_stream.js b/app/assets/javascripts/discourse/models/post_stream.js index 880ad5307..cb13182a6 100644 --- a/app/assets/javascripts/discourse/models/post_stream.js +++ b/app/assets/javascripts/discourse/models/post_stream.js @@ -413,7 +413,9 @@ Discourse.PostStream = Em.Object.extend({ @param {Discourse.Post} the post we saved in the stream. **/ commitPost: function(post) { - this.appendPost(post); + if (this.get('loadedAllPosts')) { + this.appendPost(post); + } this.get('stream').addObject(post.get('id')); this.set('stagingPost', false); },