Browse Source

Enabled KDF iterations warning (#4714)

pull/4746/head
SmithThe4th 3 years ago committed by GitHub
parent
commit
de9d4956a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      apps/web/src/vault/individual-vault/vault.component.ts

3
apps/web/src/vault/individual-vault/vault.component.ts

@ -95,8 +95,7 @@ export class VaultComponent implements OnInit, OnDestroy { @@ -95,8 +95,7 @@ export class VaultComponent implements OnInit, OnDestroy {
async ngOnInit() {
this.showVerifyEmail = !(await this.tokenService.getEmailVerified());
this.showBrowserOutdated = window.navigator.userAgent.indexOf("MSIE") !== -1;
//disable warning for february release -> add await this.isLowKdfIteration(); when ready
this.showLowKdf = false;
this.showLowKdf = await this.isLowKdfIteration();
this.trashCleanupWarning = this.i18nService.t(
this.platformUtilsService.isSelfHost()
? "trashCleanupWarningSelfHosted"

Loading…
Cancel
Save