Przeglądaj źródła

fix: 章节暂停

hsun 2 tygodni temu
rodzic
commit
7fea325698
1 zmienionych plików z 1 dodań i 1 usunięć
  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
 			}
 		}