diff --git a/src/actions/notifications.ts b/src/actions/notifications.ts index 1fa8687aa..f0ae162c8 100644 --- a/src/actions/notifications.ts +++ b/src/actions/notifications.ts @@ -243,6 +243,12 @@ const expandNotifications = ({ maxId }: Record = {}, done: () => an } } + if (maxId?.includes('+')) { + const ids = maxId.split('+'); + + maxId = ids[ids.length - 1]; + } + const params: Record = { max_id: maxId, };