summaryrefslogtreecommitdiffstats
path: root/js/meals.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/meals.js')
-rw-r--r--js/meals.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/meals.js b/js/meals.js
index ec810f3..e41756b 100644
--- a/js/meals.js
+++ b/js/meals.js
@@ -3,7 +3,7 @@ const jsDateDayString = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
const jsDateMonthString = ["January", "February", "March", "April", "May", "June", "July", "August", "October", "November", "December"];
async function checkLogin() {
localforage.getItem("logged_in_lopolis").then((value) => {
- if (value !== true) {
+ if (value != true) {
document.getElementById("meals-container").hidden = true;
document.getElementById("meals-login").hidden = false;
} else {