[mastodon] reset 'params' after first pagination iteration

otherwise query parameters in 'params' get specified twice the second
time around - once from the 'links["next"]' URL and once from 'params'
itself.
pull/1679/head
Mike Fährmann 3 years ago
parent a1f5b78039
commit 513c491cea
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -208,6 +208,7 @@ class MastodonAPI():
if not url:
return
url = url["url"]
params = None
@cache(maxage=100*365*24*3600, keyarg=0)

Loading…
Cancel
Save