1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-11 16:40:55 +00:00
* Fixed: Bug with Time of Day logic when Start is greater than End.
This commit is contained in:
SirStendec 2019-10-09 16:27:52 -04:00
parent 62bb6440f3
commit b53e0e6427
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "frankerfacez", "name": "frankerfacez",
"author": "Dan Salvato LLC", "author": "Dan Salvato LLC",
"version": "4.14.0", "version": "4.14.1",
"description": "FrankerFaceZ is a Twitch enhancement suite.", "description": "FrankerFaceZ is a Twitch enhancement suite.",
"license": "Apache-2.0", "license": "Apache-2.0",
"scripts": { "scripts": {

View file

@ -90,7 +90,7 @@ export const Time = {
const d = new Date, const d = new Date,
v = d.getHours() * 60 + d.getMinutes(); v = d.getHours() * 60 + d.getMinutes();
return v <= start || v >= end; return v >= start || v <= end;
} }
}, },