mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 08:43:33 +00:00
abstract password generation service
This commit is contained in:
@@ -67,10 +67,9 @@ export class FolderService implements FolderServiceAbstraction {
|
||||
return this.decryptedFolderCache;
|
||||
}
|
||||
|
||||
const decFolders: FolderView[] = [{
|
||||
id: null,
|
||||
name: this.noneFolder(),
|
||||
}];
|
||||
const noneFolder = new FolderView();
|
||||
noneFolder.name = this.noneFolder();
|
||||
const decFolders: FolderView[] = [noneFolder];
|
||||
|
||||
const key = await this.cryptoService.getKey();
|
||||
if (key == null) {
|
||||
|
||||
Reference in New Issue
Block a user