Skip to content
Snippets Groups Projects
Commit 8d2b3ada authored by alpaca-tc's avatar alpaca-tc Committed by Eugen Rochko
Browse files

Fixes streaming callbacks of HashtagTimeline (#3849)

parent f3be6052
No related branches found
No related tags found
No related merge requests found
......@@ -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));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment