1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 04:03:29 +00:00

fix folder

This commit is contained in:
jaasen-livefront
2025-11-20 22:35:05 -08:00
parent e09cab210c
commit a4fec9e172

View File

@@ -32,7 +32,7 @@ export class Folder extends Domain {
encryptService: EncryptService,
): Promise<FolderView> {
const folderView = new FolderView();
folderView.id = this.id ?? "";
folderView.id = this.id;
folderView.revisionDate = this.revisionDate;
try {
folderView.name = await encryptService.decryptString(this.name, key);