diff options
author | Unknwon <u@gogs.io> | 2015-12-17 21:57:34 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-12-17 21:57:34 -0500 |
commit | 33a99d587a034ba476328437da60049dbf830d6a (patch) | |
tree | 4c086139e82b2507b9a443a0ccb0bae1731efe89 /routers | |
parent | 9cd16c5b12d093dd694e146d6c845ee4c405c774 (diff) | |
download | gitea-33a99d587a034ba476328437da60049dbf830d6a.tar.gz gitea-33a99d587a034ba476328437da60049dbf830d6a.zip |
fix #2223
Diffstat (limited to 'routers')
-rw-r--r-- | routers/user/home.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/user/home.go b/routers/user/home.go index cd1d0fac5c..bf97c92398 100644 --- a/routers/user/home.go +++ b/routers/user/home.go @@ -132,7 +132,7 @@ func Dashboard(ctx *middleware.Context) { ctx.Data["MirrorCount"] = len(mirrors) ctx.Data["Mirrors"] = mirrors - retrieveFeeds(ctx, ctx.User.Id, 0, false) + retrieveFeeds(ctx, ctxUser.Id, 0, false) if ctx.Written() { return } |