1
Fork 0
This commit is contained in:
Unknwon 2015-08-29 14:44:38 +08:00
parent 63799b3c18
commit 384fbeca80
2 changed files with 3 additions and 3 deletions

View file

@ -45,7 +45,7 @@ func UpdateGravatarSource() {
gravatarSource = setting.GravatarSource
if strings.HasPrefix(gravatarSource, "//") {
gravatarSource = "http:" + gravatarSource
} else if !strings.HasPrefix(gravatarSource, "http://") ||
} else if !strings.HasPrefix(gravatarSource, "http://") &&
!strings.HasPrefix(gravatarSource, "https://") {
gravatarSource = "http://" + gravatarSource
}