diff --git a/src/stores/InitialCryptoSetupStore.ts b/src/stores/InitialCryptoSetupStore.ts index 24b2776fd7..0c2e49f5ca 100644 --- a/src/stores/InitialCryptoSetupStore.ts +++ b/src/stores/InitialCryptoSetupStore.ts @@ -76,6 +76,8 @@ export class InitialCryptoSetupStore extends EventEmitter { this.stores = stores; this.onFinished = onFinished; + // We just start this process: it's progress is tracked by the events rather + // than returning a promise, so we don't bother. this.doSetup().catch(() => logger.error("Initial crypto setup failed")); }