diff --git a/web/react/stores/post_store.jsx b/web/react/stores/post_store.jsx index 90adc408dc..0ace956d2d 100644 --- a/web/react/stores/post_store.jsx +++ b/web/react/stores/post_store.jsx @@ -240,7 +240,7 @@ class PostStoreClass extends EventEmitter { for (i; i < len; i++) { if (postList.posts[postList.order[i]].user_id === userId) { if (rootId) { - if (postList.posts[postList.order[i]].root_id === rootId) { + if (postList.posts[postList.order[i]].root_id === rootId || postList.posts[postList.order[i]].id === rootId) { lastPost = postList.posts[postList.order[i]]; break; }