summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
Diffstat (limited to 'webapp')
-rw-r--r--webapp/stores/post_store.jsx9
1 files changed, 6 insertions, 3 deletions
diff --git a/webapp/stores/post_store.jsx b/webapp/stores/post_store.jsx
index 5e8155c40..4f213ce28 100644
--- a/webapp/stores/post_store.jsx
+++ b/webapp/stores/post_store.jsx
@@ -632,9 +632,12 @@ PostStore.dispatchToken = AppDispatcher.register((payload) => {
switch (action.type) {
case ActionTypes.RECEIVED_POSTS: {
- const id = PostStore.currentFocusedPostId !== null && action.isPost ? PostStore.currentFocusedPostId : action.id;
- PostStore.storePosts(id, makePostListNonNull(action.post_list), action.checkLatest);
- PostStore.checkBounds(id, action.numRequested, makePostListNonNull(action.post_list), action.before);
+ if (PostStore.currentFocusedPostId !== null && action.isPost) {
+ PostStore.storePosts(PostStore.currentFocusedPostId, makePostListNonNull(action.post_list), action.checkLatest);
+ PostStore.checkBounds(PostStore.currentFocusedPostId, action.numRequested, makePostListNonNull(action.post_list), action.before);
+ }
+ PostStore.storePosts(action.id, makePostListNonNull(action.post_list), action.checkLatest);
+ PostStore.checkBounds(action.id, action.numRequested, makePostListNonNull(action.post_list), action.before);
PostStore.emitChange();
break;
}