aboutsummaryrefslogtreecommitdiff
path: root/object/store/mix/bytes.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/store/mix/bytes.go')
-rw-r--r--object/store/mix/bytes.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/object/store/mix/bytes.go b/object/store/mix/bytes.go
index 2b4d3819..e76d16a9 100644
--- a/object/store/mix/bytes.go
+++ b/object/store/mix/bytes.go
@@ -45,8 +45,8 @@ func (mix *Mix) ReadBytesContent(id id.ObjectID) (typ.Type, []byte, error) {
continue
}
- return typ.TypeUnknown, nil, fmt.Errorf("object/store/mix: read bytes content: %w", err)
+ return typ.Unknown, nil, fmt.Errorf("object/store/mix: read bytes content: %w", err)
}
- return typ.TypeUnknown, nil, store.ErrObjectNotFound
+ return typ.Unknown, nil, store.ErrObjectNotFound
}