feat-IRONFANS-70 #288

Merged
chenhao merged 37 commits from feat-IRONFANS-70 into dev-feat-IRONFANS-70-Robin 2024-04-15 16:26:43 +08:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit ee6f7b4433 - Show all commits

View File

@ -58,7 +58,9 @@ func ApiGetZoneThirdPartnerList(ctx *gin.Context) {
}
//填充媒体切片
mediafiller.FillEntity(ctx, zoneThirdPartner.Account.Avatar)
if zoneThirdPartner.Account != nil && zoneThirdPartner.Account.Avatar != nil {
mediafiller.FillEntity(ctx, zoneThirdPartner.Account.Avatar)
}
data := &zone_third_partner_proto.ApiListData{
ZoneThirdPartner: zoneThirdPartner,