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

Backport #29190

Fix #29178

(cherry picked from commit f80ea95eb538decad4d982ce96f640b18e430393)
This commit is contained in:
yp05327 2024-02-22 11:53:38 +09:00 committed by Earl Warren
parent 3a061083d6
commit 47e70bbf0e
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -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
}