summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-03-16 12:07:35 -0400
committerUnknown <joe2010xtmf@163.com>2014-03-16 12:07:35 -0400
commitec65be79f0337b11c01121eae9fd54fe49bee830 (patch)
treef623dbf19d69cef9a2938a0f465f1159d59a5a49 /routers
parentc97a435d73eca1d2365a66469252d685e942501b (diff)
downloadgitea-ec65be79f0337b11c01121eae9fd54fe49bee830.tar.gz
gitea-ec65be79f0337b11c01121eae9fd54fe49bee830.zip
Fix commit feed ui
Diffstat (limited to 'routers')
-rw-r--r--routers/user/user.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/user/user.go b/routers/user/user.go
index 0ff5058dcc..c43cf84a24 100644
--- a/routers/user/user.go
+++ b/routers/user/user.go
@@ -195,7 +195,7 @@ func Feeds(ctx *middleware.Context, form auth.FeedsForm) {
feeds := make([]string, len(actions))
for i := range actions {
feeds[i] = fmt.Sprintf(feedTpl, base.ActionIcon(actions[i].OpType),
- base.TimeSince(actions[i].Created), base.ActionDesc(actions[i]))
+ base.TimeSince(actions[i].Created), base.ActionDesc(actions[i], ctx.User.AvatarLink()))
}
ctx.Render.JSON(200, &feeds)
}