[mastodon-client] enforce limits for favorites and bookmarks

This commit is contained in:
Laura Hausmann 2023-07-09 23:53:15 +02:00
parent ec06d62d61
commit c1e43407d5
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -408,7 +408,7 @@ export default class Misskey implements MegalodonInterface {
if (options) {
if (options.limit) {
params = Object.assign(params, {
limit: options.limit
limit: options.limit <= 100 ? options.limit : 100
})
}
if (options.max_id) {
@ -738,7 +738,7 @@ export default class Misskey implements MegalodonInterface {
if (options) {
if (options.limit) {
params = Object.assign(params, {
limit: options.limit
limit: options.limit <= 100 ? options.limit : 100
})
}
else {