Fix uninitialized grouped notifications read marker on initial load (#31347)

This commit is contained in:
Claire 2024-08-08 19:00:05 +02:00 committed by GitHub
parent 0e4d3c0403
commit 079d681ac6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -474,8 +474,11 @@ export const notificationGroupsReducer = createReducer<NotificationGroupsState>(
state.lastReadId, state.lastReadId,
action.payload.markers.notifications.last_read_id, action.payload.markers.notifications.last_read_id,
) < 0 ) < 0
) ) {
state.lastReadId = action.payload.markers.notifications.last_read_id; state.lastReadId = action.payload.markers.notifications.last_read_id;
state.readMarkerId =
action.payload.markers.notifications.last_read_id;
}
}) })
.addCase(mountNotifications, (state) => { .addCase(mountNotifications, (state) => {
state.mounted += 1; state.mounted += 1;