diff options
author | yp05327 <576951401@qq.com> | 2023-12-11 15:19:57 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-11 06:19:57 +0000 |
commit | 0abb5633e34fd14c2d49de0b4c98f7ba7d98a37e (patch) | |
tree | 1b7f2a58e07508b0d0cb9c3721922209bf02926a /models | |
parent | 5b2bbf1a1f2527b75d8a64bc36ea735cd19c0efa (diff) | |
download | gitea-0abb5633e34fd14c2d49de0b4c98f7ba7d98a37e.tar.gz gitea-0abb5633e34fd14c2d49de0b4c98f7ba7d98a37e.zip |
Fix commit status in repo list (#28412)
Before:
![image](https://github.com/go-gitea/gitea/assets/18380374/00edf23a-aee1-4177-a12c-bd03ae14e65e)
![image](https://github.com/go-gitea/gitea/assets/18380374/0663e443-682c-4a68-b14e-a0fa0e4c3716)
`TestOrg/testactions` does have commit status, but won't display in
`All`
After:
![image](https://github.com/go-gitea/gitea/assets/18380374/7231db29-9c4e-484f-afa2-87db19be19b8)
Same to #26179.
Diffstat (limited to 'models')
-rw-r--r-- | models/git/commit_status.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/models/git/commit_status.go b/models/git/commit_status.go index acb0110200..097ce01c14 100644 --- a/models/git/commit_status.go +++ b/models/git/commit_status.go @@ -323,7 +323,9 @@ func GetLatestCommitStatusForPairs(ctx context.Context, repoIDsToLatestCommitSHA Select("max( id ) as id, repo_id"). GroupBy("context_hash, repo_id").OrderBy("max( id ) desc") - sess = db.SetSessionPagination(sess, &listOptions) + if !listOptions.IsListAll() { + sess = db.SetSessionPagination(sess, &listOptions) + } err := sess.Find(&results) if err != nil { |