1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

Revert "Use recovery keys over passphrases"

This commit is contained in:
David Baker
2020-06-18 09:35:11 +01:00
committed by GitHub
parent 803b7bb30f
commit e0a34d9dea
12 changed files with 400 additions and 427 deletions

View File

@@ -113,7 +113,7 @@ export default class CrossSigningPanel extends React.PureComponent {
_bootstrapSecureSecretStorage = async (forceReset=false) => {
this.setState({ error: null });
try {
await accessSecretStorage(() => undefined, {forceReset});
await accessSecretStorage(() => undefined, forceReset);
} catch (e) {
this.setState({ error: e });
console.error("Error bootstrapping secret storage", e);