commit: 8d2b3ada801c347f58343adf614a0b1658523506
parent: f3be6052867343ab15cc84bc91edcaf0c1d70115
Author: alpaca-tc <alpaca-tc@alpaca.tc>
Date: Mon, 19 Jun 2017 17:28:35 +0900
Fixes streaming callbacks of HashtagTimeline (#3849)
Diffstat:
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
@@ -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));