[mastodon-client] enforce limit for notifications

This commit is contained in:
Laura Hausmann 2023-07-09 03:44:41 +02:00
parent 19470265f3
commit bd1faa9ab3
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -2285,7 +2285,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 {