Fix pagination

This commit is contained in:
Egor Kislitsyn 2020-04-13 15:26:55 +04:00
parent 32ab69fe0e
commit 18fa338d43
No known key found for this signature in database
GPG Key ID: 1B49CB15B71E7805
1 changed files with 1 additions and 1 deletions

View File

@ -540,7 +540,7 @@ const fetchTimeline = ({
params.push(['with_move', withMove])
}
params.push(['count', 20])
params.push(['limit', 20])
params.push(['with_muted', withMuted])
const queryString = map(params, (param) => `${param[0]}=${param[1]}`).join('&')