1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 19:23:52 +00:00

fix for org export

This commit is contained in:
Kyle Spearrin
2018-12-17 10:54:03 -05:00
parent e7b5868aad
commit 3b22df15e8
2 changed files with 4 additions and 3 deletions

View File

@@ -166,7 +166,7 @@ export class ExportService implements ExportServiceAbstraction {
cipher.build(c);
jsonDoc.items.push(cipher);
});
return JSON.stringify({}, null, ' ');
return JSON.stringify(jsonDoc, null, ' ');
}
}