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

Use db.ListOptionsAll instead of db.ListOptions{ListAll: true} (#29995)

This commit is contained in:
Lunny Xiao
2024-03-22 20:53:52 +08:00
committed by GitHub
parent 29118743a5
commit f8ab9dafb7
15 changed files with 43 additions and 81 deletions

View File

@@ -136,7 +136,7 @@ func getReleaseInfos(ctx *context.Context, opts *repo_model.FindReleasesOptions)
}
if canReadActions {
statuses, _, err := git_model.GetLatestCommitStatus(ctx, r.Repo.ID, r.Sha1, db.ListOptions{ListAll: true})
statuses, _, err := git_model.GetLatestCommitStatus(ctx, r.Repo.ID, r.Sha1, db.ListOptionsAll)
if err != nil {
return nil, err
}