summaryrefslogtreecommitdiffstats
path: root/modules/repository/branch.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/repository/branch.go')
-rw-r--r--modules/repository/branch.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/repository/branch.go b/modules/repository/branch.go
index 8daceecb44..cd45f16227 100644
--- a/modules/repository/branch.go
+++ b/modules/repository/branch.go
@@ -49,11 +49,9 @@ func SyncRepoBranchesWithRepo(ctx context.Context, repo *repo_model.Repository,
dbBranches := make(map[string]*git_model.Branch)
{
- branches, err := git_model.FindBranches(ctx, git_model.FindBranchOptions{
- ListOptions: db.ListOptions{
- ListAll: true,
- },
- RepoID: repo.ID,
+ branches, err := db.Find[git_model.Branch](ctx, git_model.FindBranchOptions{
+ ListOptions: db.ListOptionsAll,
+ RepoID: repo.ID,
})
if err != nil {
return 0, err