diff --git a/src/stores/SetupEncryptionStore.js b/src/stores/SetupEncryptionStore.js index 7b42e1552d..cbbbefb129 100644 --- a/src/stores/SetupEncryptionStore.js +++ b/src/stores/SetupEncryptionStore.js @@ -140,5 +140,7 @@ export class SetupEncryptionStore extends EventEmitter { done() { this.phase = PHASE_FINISHED; this.emit("update"); + // async - ask other clients for keys, if necessary + MatrixClientPeg.get()._crypto.cancelAndResendAllOutgoingKeyRequests(); } }