diff --git a/apps/activityreminder/boot.js b/apps/activityreminder/boot.js index a5e982a8b..4ae9548c2 100644 --- a/apps/activityreminder/boot.js +++ b/apps/activityreminder/boot.js @@ -31,7 +31,7 @@ function isDuringAlertHours(h) { if(activityreminder_settings.startHour < activityreminder_settings.endHour){ // not passing through midnight return (h >= activityreminder_settings.startHour && h < activityreminder_settings.endHour) } else{ // passing through midnight - reutn (h >= activityreminder_settings.startHour || h < activityreminder_settings.endHour) + return (h >= activityreminder_settings.startHour || h < activityreminder_settings.endHour) } }