mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
fix for empty password history
This commit is contained in:
parent
7b1ffbbcc9
commit
741e060d99
@ -140,10 +140,14 @@ export class OnePassword1PifImporter extends BaseImporter implements Importer {
|
|||||||
|
|
||||||
private parsePasswordHistory(items: any[], cipher: CipherView) {
|
private parsePasswordHistory(items: any[], cipher: CipherView) {
|
||||||
const maxSize = items.length > 5 ? 5 : items.length;
|
const maxSize = items.length > 5 ? 5 : items.length;
|
||||||
cipher.passwordHistory = items.sort((a, b) => b.time - a.time).slice(0, maxSize).map((entry: any) => {
|
cipher.passwordHistory = items
|
||||||
|
.filter((h: any) => !this.isNullOrWhitespace(h.value) && h.time != null)
|
||||||
|
.sort((a, b) => b.time - a.time)
|
||||||
|
.slice(0, maxSize)
|
||||||
|
.map((h: any) => {
|
||||||
const ph = new PasswordHistoryView();
|
const ph = new PasswordHistoryView();
|
||||||
ph.password = entry.value;
|
ph.password = h.value;
|
||||||
ph.lastUsedDate = new Date(entry.time * 1000);
|
ph.lastUsedDate = new Date(h.time * 1000);
|
||||||
return ph;
|
return ph;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user