]8 18[ instead of [8 18]
This commit is contained in:
parent
67cab57425
commit
fece5ab486
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ window.addEventListener("load", () => {
|
|||
];
|
||||
|
||||
const hour = new Date().getHours();
|
||||
if (hour < 8 || hour > 18) {
|
||||
if (hour <= 8 || hour >= 18) {
|
||||
tags = tags.concat([
|
||||
new Tag(
|
||||
"0x520",
|
||||
|
|
Loading…
Reference in a new issue