We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20bc807 commit fbb355cCopy full SHA for fbb355c
src/client.js
@@ -1505,7 +1505,10 @@ MatrixClient.prototype.createKeyBackupVersion = async function(info) {
1505
// favour of just signing with the cross-singing master key.
1506
await this._crypto._signObject(data.auth_data);
1507
1508
- if (this._cryptoCallbacks.getSecretStorageKey && this._crypto._crossSigningInfo.getId()) {
+ if (
1509
+ this._cryptoCallbacks.getSecretStorageKey &&
1510
+ this._crypto._crossSigningInfo.getId()
1511
+ ) {
1512
// now also sign the auth data with the cross-signing master key
1513
// we check for the callback explicitly here because we still want to be able
1514
// to create an un-cross-signed key backup if there is a cross-signing key but
0 commit comments