Re-enable random avatar feature (#3988)

* reenable random avatar feature

* replace Size check by Filename check
This commit is contained in:
David Schneiderbauer 2018-05-19 15:22:09 +02:00 committed by Lunny Xiao
parent 917b9641ec
commit 44754774f1
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ func UpdateAvatarSetting(ctx *context.Context, form auth.AvatarForm, ctxUser *mo
ctxUser.AvatarEmail = form.Gravatar
}
if form.Avatar != nil {
if form.Avatar.Filename != "" {
fr, err := form.Avatar.Open()
if err != nil {
return fmt.Errorf("Avatar.Open: %v", err)