mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-24 06:46:29 +00:00
Fix various issues caused by wrong unread
key being updated
This commit is contained in:
parent
6a1b4c3452
commit
66ab1f83b0
|
@ -71,7 +71,7 @@ const updateTimeline = (state, timeline, status, usePendingItems, filtered) => {
|
|||
state = state.update(timeline, initialTimeline, map => map.update('pendingItems', list => list.unshift(status.get('id'))));
|
||||
|
||||
if (!filtered) {
|
||||
state = state.update('unread', unread => unread + 1);
|
||||
state = state.updateIn([timeline, 'unread'], unread => unread + 1);
|
||||
}
|
||||
|
||||
return state;
|
||||
|
|
Loading…
Reference in a new issue