mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
fix gravatar disable bug (#22337)
This commit is contained in:
parent
55c6433fac
commit
0cca1e079b
1 changed files with 1 additions and 1 deletions
|
@ -276,7 +276,7 @@ func Init() error {
|
|||
}
|
||||
}
|
||||
|
||||
if enableFederatedAvatarSetting.GetValueBool() {
|
||||
if GravatarSourceURL != nil && enableFederatedAvatarSetting.GetValueBool() {
|
||||
LibravatarService = libravatar.New()
|
||||
if GravatarSourceURL.Scheme == "https" {
|
||||
LibravatarService.SetUseHTTPS(true)
|
||||
|
|
Loading…
Reference in a new issue