Don't just put "null" in the notifications list, fixes #432

chats-push-2
Alex Gleason 4 years ago
parent e8a9737fc9
commit 4851ec24f9
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -155,12 +155,16 @@ export default function notifications(state = initialState, action) {
return state.set('lastRead', action.lastRead);
case TIMELINE_DELETE:
return deleteByStatus(state, action.id);
case TIMELINE_DISCONNECT:
// This is kind of a hack - `null` renders a LoadGap in the component
// https://github.com/tootsuite/mastodon/pull/6886
return action.timeline === 'home' ?
state.update('items', items => items.first() ? ImmutableOrderedSet([null]).union(items) : items) :
state;
// Disable for now
// https://gitlab.com/soapbox-pub/soapbox-fe/-/issues/432
//
// case TIMELINE_DISCONNECT:
// // This is kind of a hack - `null` renders a LoadGap in the component
// // https://github.com/tootsuite/mastodon/pull/6886
// return action.timeline === 'home' ?
// state.update('items', items => items.first() ? ImmutableOrderedSet([null]).union(items) : items) :
// state;
default:
return state;
}

Loading…
Cancel
Save