Minor fixes for #2766

This commit is contained in:
Unknwon 2016-03-06 13:24:42 -05:00
parent 922a6f13a3
commit 13bd16af92
4 changed files with 5 additions and 6 deletions

View file

@ -348,14 +348,13 @@ func (u *User) UploadAvatar(data []byte) error {
// DeleteAvatar deletes the user's custom avatar.
func (u *User) DeleteAvatar() error {
log.Info("Deleting user avatar: %s", u.CustomAvatarPath())
log.Trace("DeleteAvatar[%d]: %s", u.Id, u.CustomAvatarPath())
os.Remove(u.CustomAvatarPath())
u.UseCustomAvatar = false
if err := UpdateUser(u); err != nil {
return fmt.Errorf("updateUser: %v", err)
return fmt.Errorf("UpdateUser: %v", err)
}
return nil
}