Roc hace 1 semana
padre
commit
b4739b37a1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      services/llm_report.go

+ 1 - 1
services/llm_report.go

@@ -96,7 +96,7 @@ func ReportAddOrModifyKnowledgeByReportId(reportId int) {
 		return
 	}
 	for _, v := range chapterInfoList {
-		err = handleReportAddOrModifyKnowledge(reportId, v.ReportChapterId, v.Title, v.Author, v.Content, reportInfo.PublishTime)
+		err = handleReportAddOrModifyKnowledge(reportId, v.ReportChapterId, v.Title, reportInfo.Author, v.Content, v.PublishTime)
 		if err != nil {
 			errList = append(errList, fmt.Sprintf("第%d章:%s,异常:\n%s", v.ReportChapterId, v.Title, err.Error()))
 			continue