1
0
mirror of https://github.com/bitwarden/browser.git synced 2025-02-25 02:51:59 +01:00

update folder service to use new crypto service methods

This commit is contained in:
Jacob Fink 2023-05-30 12:57:34 -04:00
parent 3452e39b9d
commit 7d8c4a430a
No known key found for this signature in database
GPG Key ID: C2F7ACF05859D008

View File

@ -173,7 +173,7 @@ export class FolderService implements InternalFolderServiceAbstraction {
this._folders.next(folders);
if (await this.cryptoService.hasKey()) {
if (await this.cryptoService.hasUserKey()) {
this._folderViews.next(await this.decryptFolders(folders));
}
}