Skip to content

Commit

Permalink
Merge pull request #1249 from matrix-org/jryans/sharing-names
Browse files Browse the repository at this point in the history
Fix secret sharing names to match spec
  • Loading branch information
jryans authored Mar 9, 2020
2 parents 074e02c + b5eea01 commit acba31b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto/verification/Base.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export class VerificationBase extends EventEmitter {
console.debug("VerificationBase.done: requesting secret",
type, this.deviceId);
const { promise } =
storage.request(`m.key.${type}`, [this.deviceId]);
storage.request(`m.cross_signing.${type}`, [this.deviceId]);
const result = await promise;
const decoded = decodeBase64(result);
return Uint8Array.from(decoded);
Expand Down

0 comments on commit acba31b

Please sign in to comment.