summaryrefslogtreecommitdiffstats
path: root/web/react/stores
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-02-02 10:52:18 -0500
committerhmhealey <harrisonmhealey@gmail.com>2016-02-04 11:38:56 -0500
commitfcb92fa1b53a2b67323a881e7cb03965d3ec24d1 (patch)
treef9e9c4470fdb98c558ba6db4e5ebb08fc2a4a617 /web/react/stores
parentdb13b7a3ca3d3099392be557e47f838a7851a69a (diff)
downloadchat-fcb92fa1b53a2b67323a881e7cb03965d3ec24d1.tar.gz
chat-fcb92fa1b53a2b67323a881e7cb03965d3ec24d1.tar.bz2
chat-fcb92fa1b53a2b67323a881e7cb03965d3ec24d1.zip
Added ephemeral messages sent when a user mentions someone not in the channel
Diffstat (limited to 'web/react/stores')
-rw-r--r--web/react/stores/socket_store.jsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/web/react/stores/socket_store.jsx b/web/react/stores/socket_store.jsx
index 744c2c8e5..745b94313 100644
--- a/web/react/stores/socket_store.jsx
+++ b/web/react/stores/socket_store.jsx
@@ -109,6 +109,7 @@ class SocketStoreClass extends EventEmitter {
handleMessage(msg) {
switch (msg.action) {
case SocketEvents.POSTED:
+ case SocketEvents.EPHEMERAL_MESSAGE:
handleNewPostEvent(msg, this.translations);
break;