fix alert cache checks
This commit is contained in:
parent
d2fc2e26ea
commit
545a29a8cf
|
@ -369,7 +369,9 @@ function getExt(name) {
|
|||
let sAlertList = localStorage.getItem("alertList");
|
||||
let sAlertMapping = localStorage.getItem("alertMapping");
|
||||
let sAlertCount = localStorage.getItem("alertCount");
|
||||
if(sAlertList!=""&&sAlertMapping!=""&&sAlertCount!="") {
|
||||
if(sAlertList!=null && sAlertList!="" &&
|
||||
sAlertMapping!=null && sAlertMapping!="" &&sAlertCount!=null && sAlertCount!=""
|
||||
) {
|
||||
console.log("sAlertList",sAlertList)
|
||||
console.log("sAlertMapping",sAlertMapping)
|
||||
console.log("sAlertCount",sAlertCount)
|
||||
|
|
Loading…
Reference in New Issue