aboutsummaryrefslogtreecommitdiff
path: root/ref/store/files/update_validate.go
diff options
context:
space:
mode:
Diffstat (limited to 'ref/store/files/update_validate.go')
-rw-r--r--ref/store/files/update_validate.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ref/store/files/update_validate.go b/ref/store/files/update_validate.go
index cfbaca1d..ac3429aa 100644
--- a/ref/store/files/update_validate.go
+++ b/ref/store/files/update_validate.go
@@ -21,7 +21,7 @@ func (executor *refUpdateExecutor) validateQueuedUpdate(op queuedUpdate) error {
return wrapUpdateError(op.name, &refstore.InvalidNameError{Err: err})
}
- if op.newID.Size() == 0 {
+ if op.newID.Algorithm().Size() == 0 {
return wrapUpdateError(op.name, &refstore.InvalidValueError{Err: objectid.ErrInvalidAlgorithm})
}
case updateDelete, updateVerify:
@@ -30,7 +30,7 @@ func (executor *refUpdateExecutor) validateQueuedUpdate(op queuedUpdate) error {
return wrapUpdateError(op.name, &refstore.InvalidNameError{Err: err})
}
- if op.oldID.Size() == 0 {
+ if op.oldID.Algorithm().Size() == 0 {
return wrapUpdateError(op.name, &refstore.InvalidValueError{Err: objectid.ErrInvalidAlgorithm})
}
case updateCreateSymbolic, updateReplaceSymbolic: