소스 검색

Fix gitea-action user avatar broken on edited menu (#29190) (#29307)

Backport #29190

Fix #29178
tags/v1.21.6
yp05327 3 달 전
부모
커밋
f80ea95eb5
No account linked to committer's email address
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5
    1
      models/issues/content_history.go

+ 5
- 1
models/issues/content_history.go 파일 보기

@@ -161,7 +161,11 @@ func FetchIssueContentHistoryList(dbCtx context.Context, issueID, commentID int6
}

for _, item := range res {
item.UserAvatarLink = avatars.GenerateUserAvatarFastLink(item.UserName, 0)
if item.UserID > 0 {
item.UserAvatarLink = avatars.GenerateUserAvatarFastLink(item.UserName, 0)
} else {
item.UserAvatarLink = avatars.DefaultAvatarLink()
}
}
return res, nil
}

Loading…
취소
저장