From b0b24a2dbb8bca7e99e432d383716d6d811b7981 Mon Sep 17 00:00:00 2001 From: cstyles Date: Tue, 31 Oct 2017 01:08:23 -0700 Subject: [PATCH] Use RelAvatarLink() in GetActAvatar() (#2800) --- models/action.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/action.go b/models/action.go index 81174d112..ead34dbac 100644 --- a/models/action.go +++ b/models/action.go @@ -141,7 +141,7 @@ func (a *Action) ShortActUserName() string { // GetActAvatar the action's user's avatar link func (a *Action) GetActAvatar() string { a.loadActUser() - return a.ActUser.AvatarLink() + return a.ActUser.RelAvatarLink() } // GetRepoUserName returns the name of the action repository owner.