瀏覽代碼

增加cdn

wcj 5 年之前
父節點
當前提交
91958b5d40
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/jfw/modules/subscribepay/src/report/report.go

+ 1 - 1
src/jfw/modules/subscribepay/src/report/report.go

@@ -339,7 +339,7 @@ func getDateSection(start, end int64) string {
 	s := time.Unix(start, 0)
 	e := time.Unix(end, 0)
 	for {
-		if !s.Before(e) {
+		if s.After(e) {
 			break
 		}
 		array = append(array, qutil.FormatDate(&s, qutil.Date_Short_Layout))