diff options
author | Sandro Santilli <strk@kbt.io> | 2016-11-07 17:55:31 +0100 |
---|---|---|
committer | Sandro Santilli <strk@kbt.io> | 2016-11-07 17:55:31 +0100 |
commit | b7bf9dfd285a5d64bfcd6a3148c646f03984e594 (patch) | |
tree | f999abb0abee4e69fe57c2bb30ac23fdecab75b4 /routers/org/setting.go | |
parent | aadd7dcdc317c5e1665318b537162749514ac212 (diff) | |
download | gitea-b7bf9dfd285a5d64bfcd6a3148c646f03984e594.tar.gz gitea-b7bf9dfd285a5d64bfcd6a3148c646f03984e594.zip |
more
Diffstat (limited to 'routers/org/setting.go')
-rw-r--r-- | routers/org/setting.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/org/setting.go b/routers/org/setting.go index 2169779232..70d5e3e204 100644 --- a/routers/org/setting.go +++ b/routers/org/setting.go @@ -84,7 +84,7 @@ func SettingsPost(ctx *context.Context, form auth.UpdateOrgSettingForm) { } func SettingsAvatar(ctx *context.Context, form auth.AvatarForm) { - form.Source = auth.AVATAR_LOCAL + form.Source = auth.AvatarLocal if err := user.UpdateAvatarSetting(ctx, form, ctx.Org.Organization); err != nil { ctx.Flash.Error(err.Error()) } else { |