1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-12-08 19:08:34 +03:00

fix build error caused by wrong ts-strict improvements (#2783)

Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Janne Mareike Koschinski
2022-10-21 15:29:05 +02:00
committed by GitHub
parent 867a0ca7ee
commit cd33bafa04

View File

@@ -83,7 +83,7 @@ export class DeviceList extends TypedEventEmitter<EmittedEvents, CryptoEventHand
// moment represented by the snapshot in the db.
private syncToken: string | null = null;
private keyDownloadsInProgressByUser = new Map<string, Promise<void>>;
private keyDownloadsInProgressByUser = new Map<string, Promise<void>>();
// Set whenever changes are made other than setting the sync token
private dirty = false;