1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-28 05:03:59 +03:00

Fix comment

This commit is contained in:
David Baker
2019-11-14 11:56:35 +00:00
parent e10c17c866
commit 291133beb9

View File

@@ -1442,7 +1442,7 @@ MatrixClient.prototype.createKeyBackupVersion = async function(info) {
await this._crypto._signObject(data.auth_data); await this._crypto._signObject(data.auth_data);
if (this._crypto._crossSigningInfo.getId()) { if (this._crypto._crossSigningInfo.getId()) {
// now also sign the auth data with the SSK // now also sign the auth data with the master key
await this._crypto._crossSigningInfo.signObject(data.auth_data, "master"); await this._crypto._crossSigningInfo.signObject(data.auth_data, "master");
} }