From: alpaca-tc Date: Mon, 19 Jun 2017 08:28:35 +0000 (+0900) Subject: Fixes streaming callbacks of HashtagTimeline (#3849) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=8d2b3ada801c347f58343adf614a0b1658523506;p=mastodon.git Fixes streaming callbacks of HashtagTimeline (#3849) --- 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));