fix notifications not catching up with "read" status as intended

This commit is contained in:
Henry Jameson 2023-11-21 15:26:31 +02:00
commit e36548579f
3 changed files with 10 additions and 3 deletions

View file

@ -671,6 +671,7 @@ const fetchTimeline = ({
timeline,
credentials,
since = false,
minId = false,
until = false,
userId = false,
listId = false,
@ -705,6 +706,9 @@ const fetchTimeline = ({
url = url(listId)
}
if (minId) {
params.push(['min_id', minId])
}
if (since) {
params.push(['since_id', since])
}