张金坤 8 éve
szülő
commit
f3f5448093
1 módosított fájl, 7 hozzáadás és 1 törlés
  1. 7 1
      common/src/qfw/util/common.go

+ 7 - 1
common/src/qfw/util/common.go

@@ -51,7 +51,13 @@ func DecodeArticleId2ByCheck(id string) []string {
 		kstr := SE2.DecodeStringByCheck(id[3:])
 		return strings.Split(SE.DecodeStringByCheck(kstr), ",")
 	} else { //历史数据
-		return DecodeArticleId(id)
+		rep := DecodeArticleId(id)
+		oldpushid := "58f7fc4d61a0721f157a43ee" //剑鱼1.9发版前最后一次推送信息id
+		if rep[0] > oldpushid {
+			return []string{""}
+		} else {
+			return rep
+		}
 	}
 }