fix: download backup later in the change password process

This commit is contained in:
Baptiste Grob
2021-03-03 14:30:24 +01:00
parent a22a95e928
commit 9541886a2c
3 changed files with 7 additions and 3 deletions

View File

@@ -147,7 +147,6 @@ export class WebApplication extends SNApplication {
}
presentPasswordWizard(type: PasswordWizardType) {
this.bridge.downloadBackup();
const scope = this.scope!.$new(true) as PasswordWizardScope;
scope.type = type;
scope.application = this;
@@ -157,6 +156,10 @@ export class WebApplication extends SNApplication {
this.applicationElement.append(el);
}
downloadBackup(): Promise<void> {
return this.bridge.downloadBackup();
}
authenticationInProgress() {
return this.currentAuthenticationElement != null;
}