Skip to content

Commit

Permalink
Fixing var name bug in judaism.js
Browse files Browse the repository at this point in the history
  • Loading branch information
luap42 committed Apr 18, 2021
1 parent 619c74a commit 79b71cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/assets/community/judaism.js
Expand Up @@ -566,7 +566,7 @@ window.addEventListener("load", async () => {

let today = new Date();
if (today.getHours() > 20) {
today.setDate(now.getDate() + 1);
today.setDate(today.getDate() + 1);
}

const todayDay = DAY_LIST[(today.getDay() + 6) % 7];
Expand Down

0 comments on commit 79b71cc

Please sign in to comment.