diff options
Diffstat (limited to 'routers')
-rw-r--r-- | routers/user/home.go | 2 | ||||
-rw-r--r-- | routers/user/profile.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/routers/user/home.go b/routers/user/home.go index d48f28316e..fa8c1364ba 100644 --- a/routers/user/home.go +++ b/routers/user/home.go @@ -140,7 +140,7 @@ func Dashboard(ctx *middleware.Context) { ctx.Data["MirrorCount"] = len(mirrors) ctx.Data["Mirrors"] = mirrors - retrieveFeeds(ctx, ctx.User.Id, ctxUser.Id, 0, false) + retrieveFeeds(ctx, ctxUser.Id, ctx.User.Id, 0, false) if ctx.Written() { return } diff --git a/routers/user/profile.go b/routers/user/profile.go index c1ebc3bf83..c1f68c03ee 100644 --- a/routers/user/profile.go +++ b/routers/user/profile.go @@ -86,7 +86,7 @@ func Profile(ctx *middleware.Context) { ctx.Data["TabName"] = tab switch tab { case "activity": - retrieveFeeds(ctx, -1, u.Id, 0, true) + retrieveFeeds(ctx, u.Id, -1, 0, true) if ctx.Written() { return } |