Browse Source

Merge branch 'bzq/dev' of eta_mini/eta_mini_bridge into debug

鲍自强 11 months ago
parent
commit
111892ea9c
1 changed files with 3 additions and 0 deletions
  1. 3 0
      controllers/report.go

+ 3 - 0
controllers/report.go

@@ -333,6 +333,9 @@ func (this *ReportController) Detail() {
 			br.ErrMsg = "获取章节列表失败,Err:" + err.Error()
 			return
 		}
+		for _, v := range chapterList {
+			v.Content = html.UnescapeString(v.Content)
+		}
 		report.ChapterContent = chapterList
 	}
 	report.ContentSub = html.UnescapeString(report.ContentSub)