From 3d15b3ec50a7476afb38b4305c24efa6fc80753a Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Thu, 29 Dec 2016 15:50:17 -0500 Subject: [PATCH] Store posts for focus view in regular post store as well (#4913) --- webapp/stores/post_store.jsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/webapp/stores/post_store.jsx b/webapp/stores/post_store.jsx index 5e8155c409..4f213ce287 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; }