Fix !== null checks

This commit is contained in:
Kyle Spearrin 2018-08-30 21:47:49 -04:00
parent e5feb3f465
commit f6850072ea
3 changed files with 5 additions and 5 deletions

2
jslib

@ -1 +1 @@
Subproject commit 82bf646a779f9075acdb801a582c80e8b3d43a40
Subproject commit 38c26d9649f613e4f8987e4e4727a0e90a21233b

View File

@ -153,7 +153,7 @@ export default class RuntimeBackground {
tab: msg.tab,
details: msg.details,
}], msg.sender === 'autofill_cmd');
if (totpCode !== null) {
if (totpCode != null) {
this.platformUtilsService.copyToClipboard(totpCode, { window: window });
}
break;
@ -181,7 +181,7 @@ export default class RuntimeBackground {
pageDetails: this.pageDetailsToAutoFill,
});
if (totpCode !== null) {
if (totpCode != null) {
this.platformUtilsService.copyToClipboard(totpCode, { window: window });
}

View File

@ -21,7 +21,7 @@ export default class BrowserStorageService implements StorageService {
const json = this.safariStorageApi.getItem(key);
if (json) {
const obj = JSON.parse(json);
if (obj && (typeof obj[key] !== 'undefined') && obj[key] !== null) {
if (obj != null && obj[key] != null) {
resolve(obj[key] as T);
return;
}
@ -31,7 +31,7 @@ export default class BrowserStorageService implements StorageService {
} else {
return new Promise((resolve) => {
this.chromeStorageApi.get(key, (obj: any) => {
if (obj && (typeof obj[key] !== 'undefined') && obj[key] !== null) {
if (obj != null && obj[key] != null) {
resolve(obj[key] as T);
return;
}