1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Respect setting.UI.FeedPagingNum (#20094)

Fixes #20080
This commit is contained in:
Jimmy Praet
2022-06-23 11:50:37 +02:00
committed by GitHub
parent 3ba09103a4
commit b8cfd4605f
2 changed files with 2 additions and 0 deletions

View File

@@ -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)