aboutsummaryrefslogtreecommitdiffstats
path: root/routers/api/v1/utils/git.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/api/v1/utils/git.go')
-rw-r--r--routers/api/v1/utils/git.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/v1/utils/git.go b/routers/api/v1/utils/git.go
index dfb1a130c3..39714e343f 100644
--- a/routers/api/v1/utils/git.go
+++ b/routers/api/v1/utils/git.go
@@ -73,7 +73,7 @@ func searchRefCommitByType(ctx *context.APIContext, refType, filter string) (str
func ConvertToObjectID(ctx gocontext.Context, repo *context.Repository, commitID string) (git.ObjectID, error) {
objectFormat, _ := repo.GitRepo.GetObjectFormat()
if len(commitID) == objectFormat.FullLength() && objectFormat.IsValid(commitID) {
- sha, err := objectFormat.NewIDFromString(commitID)
+ sha, err := git.NewIDFromString(commitID)
if err == nil {
return sha, nil
}