Use generic AvatarLink() function

This commit is contained in:
2018-03-05 17:49:24 +01:00
parent b46110a913
commit 5fba65ddc0
6 changed files with 9 additions and 9 deletions

View File

@ -32,5 +32,5 @@ func Avatar(ctx *aero.Context) string {
// Save avatar information
user.Save()
return user.SmallAvatar()
return user.AvatarLink("small")
}