|
@@ -227,7 +227,12 @@ func (des *DataExportStruct) ByPushHistory() {
|
|
|
ids := []string{}
|
|
|
for _, pushData := range list {
|
|
|
if pushData.Id != "" {
|
|
|
- ids = append(ids, pushData.Id)
|
|
|
+ if tmp := util.CommonDecodeArticle("content", pushData.Id); len(tmp) > 0 {
|
|
|
+ if id := tmp[0]; id != "" {
|
|
|
+ ids = append(ids, id)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ //ids = append(ids, util.CommonDecodeArticle("content", pushData.Id))
|
|
|
}
|
|
|
}
|
|
|
saveData := map[string]interface{}{
|