mirror of
https://github.com/go-gitea/gitea
synced 2024-11-10 17:25:54 +01:00
change gravatar image to match URL scheme
This commit is contained in:
parent
d9f2878db4
commit
b9a1d13c29
@ -76,7 +76,7 @@ func (user *User) AvatarLink() string {
|
||||
if base.Service.EnableCacheAvatar {
|
||||
return "/avatar/" + user.Avatar
|
||||
}
|
||||
return "http://1.gravatar.com/avatar/" + user.Avatar
|
||||
return "//1.gravatar.com/avatar/" + user.Avatar
|
||||
}
|
||||
|
||||
// NewGitSig generates and returns the signature of given user.
|
||||
|
@ -143,7 +143,7 @@ func AvatarLink(email string) string {
|
||||
if Service.EnableCacheAvatar {
|
||||
return "/avatar/" + EncodeMd5(email)
|
||||
}
|
||||
return "http://1.gravatar.com/avatar/" + EncodeMd5(email)
|
||||
return "//1.gravatar.com/avatar/" + EncodeMd5(email)
|
||||
}
|
||||
|
||||
// Seconds-based time units
|
||||
|
Loading…
Reference in New Issue
Block a user