mirror of
https://github.com/go-gitea/gitea.git
synced 2025-06-24 15:23:22 +00:00
Return default avatar url when user id is zero rather than updating database (#34094)
This commit is contained in:
parent
e2ac789b49
commit
88352e0b25
@ -61,7 +61,9 @@ func GenerateRandomAvatar(ctx context.Context, u *User) error {
|
|||||||
|
|
||||||
// AvatarLinkWithSize returns a link to the user's avatar with size. size <= 0 means default size
|
// AvatarLinkWithSize returns a link to the user's avatar with size. size <= 0 means default size
|
||||||
func (u *User) AvatarLinkWithSize(ctx context.Context, size int) string {
|
func (u *User) AvatarLinkWithSize(ctx context.Context, size int) string {
|
||||||
if u.IsGhost() || u.IsGiteaActions() {
|
// ghost user was deleted, Gitea actions is a bot user, 0 means the user should be a virtual user
|
||||||
|
// which comes from git configure information
|
||||||
|
if u.IsGhost() || u.IsGiteaActions() || u.ID <= 0 {
|
||||||
return avatars.DefaultAvatarLink()
|
return avatars.DefaultAvatarLink()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user