From 8d2b3ada801c347f58343adf614a0b1658523506 Mon Sep 17 00:00:00 2001 From: alpaca-tc Date: Mon, 19 Jun 2017 17:28:35 +0900 Subject: [PATCH] Fixes streaming callbacks of HashtagTimeline (#3849) --- app/javascript/mastodon/features/hashtag_timeline/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));