summaryrefslogtreecommitdiffstats
path: root/webapp/stores/post_store.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/stores/post_store.jsx')
-rw-r--r--webapp/stores/post_store.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/stores/post_store.jsx b/webapp/stores/post_store.jsx
index b4c8c43c8..a1bdfa4e9 100644
--- a/webapp/stores/post_store.jsx
+++ b/webapp/stores/post_store.jsx
@@ -71,7 +71,7 @@ class PostStoreClass extends EventEmitter {
}
getLatestReplyablePost(channelId) {
- const postIds = getState().entities.posts.postsInChannel[channelId];
+ const postIds = getState().entities.posts.postsInChannel[channelId] || [];
const posts = getState().entities.posts.posts;
for (const postId of postIds) {