forked from treehouse/mastodon
Fix gap insertion for timeline disconnection (#7363)
parent
c73ce7b695
commit
66359ec522
|
@ -134,7 +134,7 @@ export default function timelines(state = initialState, action) {
|
|||
initialTimeline,
|
||||
map => map.update(
|
||||
'items',
|
||||
items => items.first() ? items : items.unshift(null)
|
||||
items => items.first() ? items.unshift(null) : items
|
||||
)
|
||||
);
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue