func (u *User) Avatar(s int) string { | |
if s < 1 || s > 2048 { | |
s = 128 | |
} | |
email := []byte(u.Email) | |
return fmt.Sprintf("https://s.gravatar.com/avatar/%x?d=identicon&s=%d", md5.Sum(email), s) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment