use gitRepo.GetCommit directly

and give it a commitID instead of a branchName (a bit more correct and faster)
This commit is contained in:
oliverpool 2024-03-18 12:26:38 +01:00
parent 286d09203f
commit 0a53eb838d
2 changed files with 2 additions and 4 deletions

View file

@ -283,7 +283,7 @@ func SyncBranchesToDB(ctx context.Context, repoID, pusherID int64, branchNames,
continue
}
commit, err := getCommit(branchName)
commit, err := getCommit(commitID)
if err != nil {
return fmt.Errorf("get commit of %s failed: %v", branchName, err)
}