Minor fix for #2567
This commit is contained in:
parent
daa43cfb6e
commit
a1d97e8f5c
8 changed files with 17 additions and 14 deletions
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue