From c92840e56be6304caabc5acc1a29386de715b745 Mon Sep 17 00:00:00 2001 From: Collin Styles Date: Sat, 28 Oct 2017 10:10:48 -0700 Subject: [PATCH] Use RelAvatarLink() in GetActAvatar() --- models/action.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/action.go b/models/action.go index 81174d112f42c..ead34dbac2d81 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.