forked from AkkomaGang/akkoma-fe
Removed with_muted
param usage for user favorites timeline endpoint (it only supports pagination params).
This commit is contained in:
parent
1ae8935977
commit
5235e7ea1e
1 changed files with 3 additions and 1 deletions
|
@ -538,9 +538,11 @@ const fetchTimeline = ({
|
|||
if (timeline === 'public' || timeline === 'publicAndExternal') {
|
||||
params.push(['only_media', false])
|
||||
}
|
||||
if (timeline !== 'favorites') {
|
||||
params.push(['with_muted', withMuted])
|
||||
}
|
||||
|
||||
params.push(['limit', 20])
|
||||
params.push(['with_muted', withMuted])
|
||||
|
||||
const queryString = map(params, (param) => `${param[0]}=${param[1]}`).join('&')
|
||||
url += `?${queryString}`
|
||||
|
|
Loading…
Reference in a new issue