summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/frontend/frontendscript.js
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/locationinfo/frontend/frontendscript.js')
-rw-r--r--modules-available/locationinfo/frontend/frontendscript.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules-available/locationinfo/frontend/frontendscript.js b/modules-available/locationinfo/frontend/frontendscript.js
index bad6a8ed..efe4d5b6 100644
--- a/modules-available/locationinfo/frontend/frontendscript.js
+++ b/modules-available/locationinfo/frontend/frontendscript.js
@@ -15,7 +15,7 @@ function IsOpen(date, room) {
openDate.setMinutes(tmp[i].MinutesOpen);
closeDate.setHours(tmp[i].HourClose);
closeDate.setMinutes(tmp[i].MinutesClose);
- if (openDate < date && closeDate > date) {
+ if (openDate <= date && closeDate > date) {
return true;
}
}
@@ -42,7 +42,7 @@ function toInt(str) {
* computes the time difference between 2 Date objects
* @param {Date} a
* @param {Date} b
- * @param {Array} globalConfig
+ * @param {Object} globalConfig
* @returns {string} printable time
*/
function GetTimeDiferenceAsString(a, b, globalConfig) {