public_host 5 years ago
parent
commit
016c1c3fb9
  1. 3
      core.go

3
core.go

@ -130,6 +130,9 @@ func isInTimeOfDay(t time.Time, ta TimeArrow) bool {
log.Println("时间段开始时间格式错误", start) log.Println("时间段开始时间格式错误", start)
continue continue
} }
if end == "24" || end == "24:00" || end == "24:00:00" {
end = "23:59:59"
}
endTime, err := time.ParseInLocation("2006-01-02 15:04:05", fmt.Sprintf("%s %s", t.Format("2006-01-02"), end), time.Local) endTime, err := time.ParseInLocation("2006-01-02 15:04:05", fmt.Sprintf("%s %s", t.Format("2006-01-02"), end), time.Local)
if err != nil { if err != nil {
log.Println("时间段结束时间格式错误", end) log.Println("时间段结束时间格式错误", end)

Loading…
Cancel
Save