aboutsummaryrefslogtreecommitdiff
path: root/refs.go
diff options
context:
space:
mode:
Diffstat (limited to 'refs.go')
-rw-r--r--refs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/refs.go b/refs.go
index d1247f0e..1e185e52 100644
--- a/refs.go
+++ b/refs.go
@@ -70,7 +70,7 @@ func (repo *Repository) resolvePackedRef(refname string) (Ref, error) {
}
sp := bytes.IndexByte(line, ' ')
- if sp != repo.hashSize*2 {
+ if sp != repo.hashAlgo.size()*2 {
continue
}
@@ -428,7 +428,7 @@ func (repo *Repository) ListRefs(pattern string) ([]Ref, error) {
}
sp := bytes.IndexByte(line, ' ')
- if sp != repo.hashSize*2 {
+ if sp != repo.hashAlgo.size()*2 {
lastIdx = -1
continue
}