mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
uri match value can be 0
This commit is contained in:
@@ -6,6 +6,6 @@ export class LoginUriApi {
|
||||
|
||||
constructor(data: any) {
|
||||
this.uri = data.Uri;
|
||||
this.match = data.Match ? data.Match : null;
|
||||
this.match = data.Match != null ? data.Match : null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user