This commit is contained in:
maru21 2023-10-28 21:29:47 +02:00
parent 7f07aa2d0a
commit 4e6562b225

View File

@ -34,14 +34,10 @@ export const passwordHash = {
}
},
verify: function () {
if (passwordHash == "") {
return false;
}
if (passwordHash == "") return false;
let verifiedStatus = false;
let tF = retrieveData("templateFiles");
if (tF != null) {
verifiedStatus = true
}
if (tF != null) verifiedStatus = true
return verifiedStatus;
}
}