summaryrefslogtreecommitdiffstats
path: root/web/react/stores/post_store.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-02-03 12:12:10 -0500
committerhmhealey <harrisonmhealey@gmail.com>2016-02-04 11:38:58 -0500
commit70c3715b963cd8f2a710f8909f23696f9de7fcc7 (patch)
tree55077777c2bbb4e5d0f6f41d9e2d12e3668d02c4 /web/react/stores/post_store.jsx
parent994358c31a93296a225f7d34942bbedfeac025c4 (diff)
downloadchat-70c3715b963cd8f2a710f8909f23696f9de7fcc7.tar.gz
chat-70c3715b963cd8f2a710f8909f23696f9de7fcc7.tar.bz2
chat-70c3715b963cd8f2a710f8909f23696f9de7fcc7.zip
Changed how posts are marked ephemeral
Diffstat (limited to 'web/react/stores/post_store.jsx')
-rw-r--r--web/react/stores/post_store.jsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/react/stores/post_store.jsx b/web/react/stores/post_store.jsx
index a504fef89..8ff58f685 100644
--- a/web/react/stores/post_store.jsx
+++ b/web/react/stores/post_store.jsx
@@ -342,8 +342,7 @@ class PostStoreClass extends EventEmitter {
// make sure to copy the post so that component state changes work properly
postList.posts[post.id] = Object.assign({}, post, {
state: Constants.POST_DELETED,
- filenames: [],
- ephemeral: true
+ filenames: []
});
}
}