skip no folder when updating key
This commit is contained in:
parent
6c7df2788e
commit
236bcdfb68
|
@ -80,6 +80,9 @@ export class UpdateKeyComponent {
|
||||||
|
|
||||||
const folders = await this.folderService.getAllDecrypted();
|
const folders = await this.folderService.getAllDecrypted();
|
||||||
for (let i = 0; i < folders.length; i++) {
|
for (let i = 0; i < folders.length; i++) {
|
||||||
|
if (folders[i].id == null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
const folder = await this.folderService.encrypt(folders[i], encKey[0]);
|
const folder = await this.folderService.encrypt(folders[i], encKey[0]);
|
||||||
request.folders.push(new FolderWithIdRequest(folder));
|
request.folders.push(new FolderWithIdRequest(folder));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue