Explorar o código

fix: 章节暂停

hsun hai 2 semanas
pai
achega
7fea325698
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      services/report_v2.go

+ 1 - 1
services/report_v2.go

@@ -337,7 +337,7 @@ func getAddChapter(reportInfo *models.Report, minClassifyId, inheritReportId int
 				continue
 			}
 			// 暂停更新(此处用报告日期去判断是否需要停更,而不是报告创建日期)
-			if reportDate.After(startTime) && reportDate.Before(endTime.AddDate(0, 0, 1)) {
+			if !reportDate.Before(startTime) && !reportDate.After(endTime) {
 				continue
 			}
 		}