mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 23:33:31 +00:00
limit ph import to 5 max
This commit is contained in:
@@ -46,6 +46,11 @@ export class BitwardenJsonImporter extends BaseImporter implements Importer {
|
||||
cipher.organizationId = null;
|
||||
cipher.collectionIds = null;
|
||||
|
||||
// make sure password history is limited
|
||||
if (cipher.passwordHistory != null && cipher.passwordHistory.length > 5) {
|
||||
cipher.passwordHistory = cipher.passwordHistory.slice(0, 5);
|
||||
}
|
||||
|
||||
if (!this.organization && c.folderId != null && groupingsMap.has(c.folderId)) {
|
||||
result.folderRelationships.push([result.ciphers.length, groupingsMap.get(c.folderId)]);
|
||||
} else if (this.organization && c.collectionIds != null) {
|
||||
|
||||
Reference in New Issue
Block a user