fix panic issue on update avatar email (#4580) (#4590)

fix #4580

back port PR for release/v1.5,  refer to #4581
This commit is contained in:
Dingjun 2018-08-01 21:34:57 +08:00 committed by Bo-Yi Wu
parent 5a7830e0e8
commit 940e30bcd4
1 changed files with 1 additions and 1 deletions

View File

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