diff --git a/lib/client.js b/lib/client.js index dc787b6..03eb519 100644 --- a/lib/client.js +++ b/lib/client.js @@ -916,7 +916,7 @@ export default class Client extends EventTarget { if (limit <= 0) { throw new Error("Cannot fetch all chat history: too many messages"); } - if (messages.length == max) { + if (messages.length >= max) { // There are still more messages to fetch after.time = messages[messages.length - 1].tags.time; return this.fetchHistoryBetween(target, after, before, limit);