1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-22 11:45:59 +01:00

[PM-5465] Fix null checks in login view uris (#7421)

* Prefer empty lists to null

* Defensively null check public properties
This commit is contained in:
Matt Gibson 2024-01-11 09:55:16 -05:00 committed by GitHub
parent 48d4c88770
commit f8d72f0231
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 12 deletions

View File

@ -330,7 +330,7 @@ export class AddEditComponent implements OnInit, OnDestroy {
this.cipher.login.uris.length === 1 &&
(this.cipher.login.uris[0].uri == null || this.cipher.login.uris[0].uri === "")
) {
this.cipher.login.uris = null;
this.cipher.login.uris = [];
}
// Allows saving of selected collections during "Add" and "Clone" flows

View File

@ -46,7 +46,13 @@ export class CipherRequest {
switch (this.type) {
case CipherType.Login:
this.login = new LoginApi();
this.login.uris = null;
this.login.uris =
cipher.login.uris?.map((u) => {
const uri = new LoginUriApi();
uri.uri = u.uri != null ? u.uri.encryptedString : null;
uri.match = u.match != null ? u.match : null;
return uri;
}) ?? [];
this.login.username = cipher.login.username ? cipher.login.username.encryptedString : null;
this.login.password = cipher.login.password ? cipher.login.password.encryptedString : null;
this.login.passwordRevisionDate =
@ -56,15 +62,6 @@ export class CipherRequest {
this.login.totp = cipher.login.totp ? cipher.login.totp.encryptedString : null;
this.login.autofillOnPageLoad = cipher.login.autofillOnPageLoad;
if (cipher.login.uris != null) {
this.login.uris = cipher.login.uris.map((u) => {
const uri = new LoginUriApi();
uri.uri = u.uri != null ? u.uri.encryptedString : null;
uri.match = u.match != null ? u.match : null;
return uri;
});
}
if (cipher.login.fido2Credentials != null) {
this.login.fido2Credentials = cipher.login.fido2Credentials.map((key) => {
const keyApi = new Fido2CredentialApi();

View File

@ -61,7 +61,7 @@ export class LoginView extends ItemView {
}
get hasUris(): boolean {
return this.uris.length > 0;
return this.uris != null && this.uris.length > 0;
}
get hasFido2Credentials(): boolean {