mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	Merge pull request #256 from lunny/lunny/golint_modules_avatar
Golint fixed for modules/avatar
This commit is contained in:
		@@ -355,7 +355,7 @@ func (u *User) UploadAvatar(data []byte) error {
 | 
				
			|||||||
		return fmt.Errorf("Decode: %v", err)
 | 
							return fmt.Errorf("Decode: %v", err)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	m := resize.Resize(avatar.AVATAR_SIZE, avatar.AVATAR_SIZE, img, resize.NearestNeighbor)
 | 
						m := resize.Resize(avatar.AvatarSize, avatar.AvatarSize, img, resize.NearestNeighbor)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sess := x.NewSession()
 | 
						sess := x.NewSession()
 | 
				
			||||||
	defer sessionRelease(sess)
 | 
						defer sessionRelease(sess)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -14,9 +14,10 @@ import (
 | 
				
			|||||||
	"github.com/issue9/identicon"
 | 
						"github.com/issue9/identicon"
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const AVATAR_SIZE = 290
 | 
					// AvatarSize returns avatar's size
 | 
				
			||||||
 | 
					const AvatarSize = 290
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// RandomImage generates and returns a random avatar image unique to input data
 | 
					// RandomImageSize generates and returns a random avatar image unique to input data
 | 
				
			||||||
// in custom size (height and width).
 | 
					// in custom size (height and width).
 | 
				
			||||||
func RandomImageSize(size int, data []byte) (image.Image, error) {
 | 
					func RandomImageSize(size int, data []byte) (image.Image, error) {
 | 
				
			||||||
	randExtent := len(palette.WebSafe) - 32
 | 
						randExtent := len(palette.WebSafe) - 32
 | 
				
			||||||
@@ -39,5 +40,5 @@ func RandomImageSize(size int, data []byte) (image.Image, error) {
 | 
				
			|||||||
// RandomImage generates and returns a random avatar image unique to input data
 | 
					// RandomImage generates and returns a random avatar image unique to input data
 | 
				
			||||||
// in default size (height and width).
 | 
					// in default size (height and width).
 | 
				
			||||||
func RandomImage(data []byte) (image.Image, error) {
 | 
					func RandomImage(data []byte) (image.Image, error) {
 | 
				
			||||||
	return RandomImageSize(AVATAR_SIZE, data)
 | 
						return RandomImageSize(AvatarSize, data)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user