Fixes #20080
This commit is contained in:
parent
dbafb4f4d4
commit
05464ac2a5
2 changed files with 2 additions and 0 deletions
|
@ -141,6 +141,7 @@ func Dashboard(ctx *context.Context) {
|
|||
OnlyPerformedBy: false,
|
||||
IncludeDeleted: false,
|
||||
Date: ctx.FormString("date"),
|
||||
ListOptions: db.ListOptions{PageSize: setting.UI.FeedPagingNum},
|
||||
})
|
||||
if err != nil {
|
||||
ctx.ServerError("GetFeeds", err)
|
||||
|
|
|
@ -188,6 +188,7 @@ func Profile(ctx *context.Context) {
|
|||
OnlyPerformedBy: true,
|
||||
IncludeDeleted: false,
|
||||
Date: ctx.FormString("date"),
|
||||
ListOptions: db.ListOptions{PageSize: setting.UI.FeedPagingNum},
|
||||
})
|
||||
if err != nil {
|
||||
ctx.ServerError("GetFeeds", err)
|
||||
|
|
Reference in a new issue