Remove unnecessary `Array.from` from `markConversationRead`

This commit is contained in:
Evan Hahn 2021-08-31 11:47:15 -05:00 committed by GitHub
parent 41c78240fd
commit 02518d2e16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -99,10 +99,7 @@ export async function markConversationRead(
senderId?: string;
timestamp: number;
hasErrors?: string;
}> = [
...unreadMessagesSyncData,
...Array.from(unreadReactionSyncData.values()),
];
}> = [...unreadMessagesSyncData, ...unreadReactionSyncData.values()];
if (readSyncs.length && options.sendReadReceipts) {
window.log.info(`Sending ${readSyncs.length} read syncs`);