fix messaging (#13772)

Fixing a small mistake!
This commit is contained in:
Charles Bochet
2025-08-08 16:22:53 +02:00
committed by GitHub
parent 5fae14377a
commit 7a90fb2c5f
@@ -94,7 +94,7 @@ export class MessagingMessageListFetchService {
const isFullSync =
messageLists.every(
(messageList) => !isNonEmptyString(messageList.previousSyncCursor),
) && isNonEmptyString(messageChannel.syncCursor);
) && !isNonEmptyString(messageChannel.syncCursor);
let totalMessagesToImportCount = 0;