Skip to content

Commit

Permalink
Fixes streaming callbacks of HashtagTimeline (#3849)
Browse files Browse the repository at this point in the history
  • Loading branch information
alpaca-tc authored and Gargron committed Jun 19, 2017
1 parent f3be605 commit 8d2b3ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/mastodon/features/hashtag_timeline/index.js
Expand Up @@ -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));
Expand Down

0 comments on commit 8d2b3ad

Please sign in to comment.