fix notifications not catching up with "read" status as intended
This commit is contained in:
parent
37e3a23f2a
commit
e36548579f
3 changed files with 10 additions and 3 deletions
|
|
@ -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])
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue