aboutsummaryrefslogtreecommitdiff
path: root/packfile/ingest/thin_fix.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-25 14:34:50 +0000
committerGravatar Runxi Yu2026-03-25 14:34:50 +0000
commite4a7aa0742f5070299d37e8421c99d67f0af3f90 (patch)
tree36d89781476a92e61280c5ff232a2773e4092c0e /packfile/ingest/thin_fix.go
parent*: delta -> packfile/delta (diff)
signatureNo signature
*: object/store -> object/storer v0.1.107
Diffstat (limited to 'packfile/ingest/thin_fix.go')
-rw-r--r--packfile/ingest/thin_fix.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/packfile/ingest/thin_fix.go b/packfile/ingest/thin_fix.go
index 083c7173..1be75f8e 100644
--- a/packfile/ingest/thin_fix.go
+++ b/packfile/ingest/thin_fix.go
@@ -6,7 +6,7 @@ import (
"codeberg.org/lindenii/furgit/internal/intconv"
"codeberg.org/lindenii/furgit/internal/progress"
- "codeberg.org/lindenii/furgit/object/store"
+ "codeberg.org/lindenii/furgit/object/storer"
)
// maybeFixThin appends missing bases and rewrites pack header/trailer when needed.
@@ -71,7 +71,7 @@ func maybeFixThin(state *ingestState) error {
for _, id := range baseIDs {
ty, content, err := state.opts.Base.ReadBytesContent(id)
if err != nil {
- if errors.Is(err, objectstore.ErrObjectNotFound) {
+ if errors.Is(err, objectstorer.ErrObjectNotFound) {
continue
}