From 4580ebe100f8309fa04c1239829fa5f35b433d13 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Sun, 11 Oct 2015 22:28:23 +1030 Subject: [PATCH] Show posts even if they don't have a user --- js/forum/src/components/PostStream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/forum/src/components/PostStream.js b/js/forum/src/components/PostStream.js index 15f4c083b..860232493 100644 --- a/js/forum/src/components/PostStream.js +++ b/js/forum/src/components/PostStream.js @@ -181,7 +181,7 @@ class PostStream extends mixin(Component, evented) { .map(id => { const post = app.store.getById('posts', id); - return post && post.discussion() && post.user() !== false && post.canEdit() !== null ? post : null; + return post && post.discussion() && post.canEdit() !== null ? post : null; }); }