Fetch activites by last id

This commit is contained in:
jasper 2019-03-01 12:53:24 -08:00
parent 9aec49bacb
commit 81e89fed3d
1 changed files with 3 additions and 1 deletions

View File

@ -262,7 +262,9 @@ const addNewStatuses = (state, { statuses, showImmediately = false, timeline, us
})
// Keep the visible statuses sorted
if (timeline) sortTimeline(timelineObject)
if (timeline) {
sortTimeline(timelineObject)
}
}
const addNewNotifications = (state, { dispatch, notifications, older, visibleNotificationTypes }) => {