Enabled KDF iterations warning (#4714)

This commit is contained in:
SmithThe4th 2023-02-13 14:19:23 -05:00 committed by GitHub
parent 63563bd87d
commit de9d4956a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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"