mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
null check to be consistent with mobile codebase
This commit is contained in:
parent
2d726ee3af
commit
fd260dfbae
@ -44,7 +44,9 @@ export class ExportService implements ExportServiceAbstraction {
|
||||
if (format === 'csv') {
|
||||
const foldersMap = new Map<string, FolderView>();
|
||||
decFolders.forEach((f) => {
|
||||
if (f.id != null) {
|
||||
foldersMap.set(f.id, f);
|
||||
}
|
||||
});
|
||||
|
||||
const exportCiphers: any[] = [];
|
||||
|
Loading…
Reference in New Issue
Block a user