1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-18 02:41:15 +02:00

fix null check on response

This commit is contained in:
Kyle Spearrin 2019-03-07 07:53:48 -05:00
parent e9cbf7b7df
commit 0fa88b44b8

View File

@ -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) {