diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-29 07:50:25 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-29 07:50:25 -0400 |
commit | 828282882066aa4e8bd8fb0c083c530607bc34bb (patch) | |
tree | 4ac056c6d088a046d5b848c872c363cd6bc0276b /routers/user | |
parent | 879ef8d81fa7dd194a7482c870cecab5a5ac964b (diff) | |
download | gitea-828282882066aa4e8bd8fb0c083c530607bc34bb.tar.gz gitea-828282882066aa4e8bd8fb0c083c530607bc34bb.zip |
Fix action email bug
Diffstat (limited to 'routers/user')
-rw-r--r-- | routers/user/user.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/user/user.go b/routers/user/user.go index b0fc583978..114169e606 100644 --- a/routers/user/user.go +++ b/routers/user/user.go @@ -279,7 +279,7 @@ func Feeds(ctx *middleware.Context, form auth.FeedsForm) { feeds := make([]string, len(actions)) for i := range actions { feeds[i] = fmt.Sprintf(TPL_FEED, base.ActionIcon(actions[i].OpType), - base.TimeSince(actions[i].Created), base.ActionDesc(actions[i], ctx.User.AvatarLink())) + base.TimeSince(actions[i].Created), base.ActionDesc(actions[i])) } ctx.JSON(200, &feeds) } |