mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-17 21:04:14 +00:00
Fixes streaming callbacks of HashtagTimeline (#3849)
This commit is contained in:
parent
f3be605286
commit
8d2b3ada80
|
@ -60,7 +60,7 @@ class HashtagTimeline extends React.PureComponent {
|
||||||
received (data) {
|
received (data) {
|
||||||
switch(data.event) {
|
switch(data.event) {
|
||||||
case 'update':
|
case 'update':
|
||||||
dispatch(updateTimeline('tag', JSON.parse(data.payload)));
|
dispatch(updateTimeline(`hashtag:${id}`, JSON.parse(data.payload)));
|
||||||
break;
|
break;
|
||||||
case 'delete':
|
case 'delete':
|
||||||
dispatch(deleteFromTimelines(data.payload));
|
dispatch(deleteFromTimelines(data.payload));
|
||||||
|
|
Loading…
Reference in a new issue