about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/hashtag_timeline/index.jsx
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-10 00:47:47 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-10 00:47:47 +0100
commitbf5f55a6bbfee69e41acfcd14002308c69d8b68c (patch)
tree9261287b4c47c3a88c7c30a5e355b50ae9cfa9fe /app/assets/javascripts/components/features/hashtag_timeline/index.jsx
parentaabf884c5f6bf5c0a7cdec2c3e4fe174eeecfaec (diff)
Fix live status removal from public/hashtag channels
Diffstat (limited to 'app/assets/javascripts/components/features/hashtag_timeline/index.jsx')
-rw-r--r--app/assets/javascripts/components/features/hashtag_timeline/index.jsx10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/assets/javascripts/components/features/hashtag_timeline/index.jsx b/app/assets/javascripts/components/features/hashtag_timeline/index.jsx
index de6a9618e..bea0a2759 100644
--- a/app/assets/javascripts/components/features/hashtag_timeline/index.jsx
+++ b/app/assets/javascripts/components/features/hashtag_timeline/index.jsx
@@ -4,7 +4,8 @@ import StatusListContainer from '../ui/containers/status_list_container';
 import Column from '../ui/components/column';
 import {
   refreshTimeline,
-  updateTimeline
+  updateTimeline,
+  deleteFromTimelines
 } from '../../actions/timelines';
 
 const HashtagTimeline = React.createClass({
@@ -24,7 +25,12 @@ const HashtagTimeline = React.createClass({
       }, {
 
         received (data) {
-          dispatch(updateTimeline('tag', JSON.parse(data.message)));
+          switch(data.type) {
+            case 'update':
+              return dispatch(updateTimeline('tag', JSON.parse(data.message)));
+            case 'delete':
+              return dispatch(deleteFromTimelines(data.id));
+          }
         }
 
       });