about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/hashtag_timeline
diff options
context:
space:
mode:
authoralpaca-tc <alpaca-tc@alpaca.tc>2017-06-19 17:28:35 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-06-19 10:28:35 +0200
commit8d2b3ada801c347f58343adf614a0b1658523506 (patch)
tree0101f285c6003384a6c7500ee638c7d12fc45773 /app/javascript/mastodon/features/hashtag_timeline
parentf3be6052867343ab15cc84bc91edcaf0c1d70115 (diff)
Fixes streaming callbacks of HashtagTimeline (#3849)
Diffstat (limited to 'app/javascript/mastodon/features/hashtag_timeline')
-rw-r--r--app/javascript/mastodon/features/hashtag_timeline/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/hashtag_timeline/index.js b/app/javascript/mastodon/features/hashtag_timeline/index.js
index ba6dbe6e5..3b2f1ba93 100644
--- a/app/javascript/mastodon/features/hashtag_timeline/index.js
+++ b/app/javascript/mastodon/features/hashtag_timeline/index.js
@@ -60,7 +60,7 @@ class HashtagTimeline extends React.PureComponent {
       received (data) {
         switch(data.event) {
         case 'update':
-          dispatch(updateTimeline('tag', JSON.parse(data.payload)));
+          dispatch(updateTimeline(`hashtag:${id}`, JSON.parse(data.payload)));
           break;
         case 'delete':
           dispatch(deleteFromTimelines(data.payload));