1
0
Fork 0
forked from forgejo/forgejo

Upgrade xorm (#27673)

Related to https://gitea.com/xorm/xorm/pulls/2341
This commit is contained in:
Nanguan Lin 2023-10-19 18:25:57 +08:00 committed by GitHub
parent 2f2ca8c940
commit e91d4f106b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 5 deletions

View file

@ -235,7 +235,7 @@ func GetCommitStatuses(ctx context.Context, repo *repo_model.Repository, sha str
countSession := listCommitStatusesStatement(ctx, repo, sha, opts)
countSession = db.SetSessionPagination(countSession, opts)
maxResults, err := countSession.Count(new(CommitStatus))
maxResults, err := countSession.OrderBy("1").Count(new(CommitStatus))
if err != nil {
log.Error("Count PRs: %v", err)
return nil, maxResults, err