diff options
author | alpaca-tc <alpaca-tc@alpaca.tc> | 2017-06-19 17:28:35 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-19 10:28:35 +0200 |
commit | 8d2b3ada801c347f58343adf614a0b1658523506 (patch) | |
tree | 0101f285c6003384a6c7500ee638c7d12fc45773 /app/javascript | |
parent | f3be6052867343ab15cc84bc91edcaf0c1d70115 (diff) |
Fixes streaming callbacks of HashtagTimeline (#3849)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/features/hashtag_timeline/index.js | 2 |
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)); |