@@ -83,7 +83,7 @@ func feedActionsToFeedItems(ctx *context.Context, actions activities_model.Actio
83
83
link := & feeds.Link {Href : act .GetCommentHTMLURL (ctx )}
84
84
85
85
// title
86
- title = act .ActUser .DisplayName () + " "
86
+ title = act .ActUser .GetDisplayName () + " "
87
87
var titleExtra template.HTML
88
88
switch act .OpType {
89
89
case activities_model .ActionCreateRepo :
@@ -252,7 +252,7 @@ func feedActionsToFeedItems(ctx *context.Context, actions activities_model.Actio
252
252
Description : desc ,
253
253
IsPermaLink : "false" ,
254
254
Author : & feeds.Author {
255
- Name : act .ActUser .DisplayName (),
255
+ Name : act .ActUser .GetDisplayName (),
256
256
Email : act .ActUser .GetEmail (),
257
257
},
258
258
Id : fmt .Sprintf ("%v: %v" , strconv .FormatInt (act .ID , 10 ), link .Href ),
@@ -313,7 +313,7 @@ func releasesToFeedItems(ctx *context.Context, releases []*repo_model.Release) (
313
313
Link : link ,
314
314
Created : rel .CreatedUnix .AsTime (),
315
315
Author : & feeds.Author {
316
- Name : rel .Publisher .DisplayName (),
316
+ Name : rel .Publisher .GetDisplayName (),
317
317
Email : rel .Publisher .GetEmail (),
318
318
},
319
319
Id : fmt .Sprintf ("%v: %v" , strconv .FormatInt (rel .ID , 10 ), link .Href ),
0 commit comments