Resize avatars to the same size they are displayed

This commit is contained in:
James Anderson 2015-08-10 10:43:14 -05:00
parent 59a475163f
commit e5146155a0
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ func (u *User) UploadAvatar(data []byte) error {
if err != nil {
return err
}
m := resize.Resize(200, 200, img, resize.NearestNeighbor)
m := resize.Resize(234, 234, img, resize.NearestNeighbor)
sess := x.NewSession()
defer sess.Close()