@@ -722,7 +722,7 @@ func TimesIsOver(times []string, hour int) (bool, time.Time, time.Time) {
return true, start, end
} else {
start := time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local)
- return hour > lastHour, start, now
+ return hour-1 == lastHour, start, now
}