Resize avatars to the same size they are displayed
This commit is contained in:
parent
59a475163f
commit
e5146155a0
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Reference in a new issue