1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-16 02:27:00 +02:00
This commit is contained in:
Kyle Spearrin 2019-04-12 09:45:47 -04:00
parent aa4f811e9e
commit 1de193eea1

View File

@ -20,10 +20,7 @@ export class LoginData {
this.totp = data.totp;
if (data.uris) {
this.uris = [];
data.uris.forEach((u) => {
this.uris.push(new LoginUriData(u));
});
this.uris = data.uris.map((u) => new LoginUriData(u));
}
}
}