mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
fix null check on response
This commit is contained in:
@@ -11,7 +11,8 @@ export abstract class BaseResponse {
|
||||
}
|
||||
if (response == null && this.response != null) {
|
||||
response = this.response;
|
||||
} else {
|
||||
}
|
||||
if (response == null) {
|
||||
return null;
|
||||
}
|
||||
if (!exactName && response[propertyName] === undefined) {
|
||||
|
||||
Reference in New Issue
Block a user