Ver código fonte

Merge branch 'hotfix/forum_chart_description' into debug

xyxie 1 mês atrás
pai
commit
2dcb07e4ac
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      services/eta_forum/eta_forum_hub.go

+ 1 - 1
services/eta_forum/eta_forum_hub.go

@@ -1054,7 +1054,7 @@ func getChartDescriptionWithAdminNameByChartInfoId(chartInfoId int) (list []*dat
 	}
 	adminMap := make(map[int]string)
 	for _, v := range adminList {
-		adminMap[v.AdminId] = v.RealName
+		adminMap[v.AdminId] = v.AdminName
 	}
 	for _, v := range descriptionList {
 		adminName, ok := adminMap[v.SysUserId]