mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Return an empty string when a repo has no avatar in the repo API (#31187)
Resolves #31167. https://github.com/go-gitea/gitea/pull/30885 changed the behavior of `repo.AvatarLink()` where it can now take the empty string and append it to the app data URL. This does not point to a valid avatar image URL, and, as the issue mentions, previous Gitea versions returned the empty string. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
		| @@ -84,7 +84,13 @@ func (repo *Repository) relAvatarLink(ctx context.Context) string { | ||||
| 	return setting.AppSubURL + "/repo-avatars/" + url.PathEscape(repo.Avatar) | ||||
| } | ||||
|  | ||||
| // AvatarLink returns the full avatar url with http host. TODO: refactor it to a relative URL, but it is still used in API response at the moment | ||||
| // AvatarLink returns the full avatar url with http host or the empty string if the repo doesn't have an avatar. | ||||
| // | ||||
| // TODO: refactor it to a relative URL, but it is still used in API response at the moment | ||||
| func (repo *Repository) AvatarLink(ctx context.Context) string { | ||||
| 	return httplib.MakeAbsoluteURL(ctx, repo.relAvatarLink(ctx)) | ||||
| 	relLink := repo.relAvatarLink(ctx) | ||||
| 	if relLink != "" { | ||||
| 		return httplib.MakeAbsoluteURL(ctx, relLink) | ||||
| 	} | ||||
| 	return "" | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user