Fixes streaming callbacks of HashtagTimeline (#3849)

lolsob-rspec
alpaca-tc 2017-06-19 17:28:35 +09:00 committed by Eugen Rochko
parent 8bed91d94c
commit fa14f245f8
1 changed files with 1 additions and 1 deletions

View File

@ -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));