1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-04 11:51:45 +03:00

Re-request room keys after auth

This commit is contained in:
Zoe
2020-04-03 11:49:08 +01:00
parent 9944ce71b6
commit 0102876e40

View File

@@ -140,5 +140,7 @@ export class SetupEncryptionStore extends EventEmitter {
done() { done() {
this.phase = PHASE_FINISHED; this.phase = PHASE_FINISHED;
this.emit("update"); this.emit("update");
// async - ask other clients for keys, if necessary
MatrixClientPeg.get()._crypto.cancelAndResendAllOutgoingKeyRequests();
} }
} }