mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-11-14 19:25:26 -05:00
lib/client: unify checks for chathistory end
This commit is contained in:
parent
2d27168529
commit
dc5e64aaac
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue