diff options
Diffstat (limited to 'format/packfile/ingest/thin_fix.go')
| -rw-r--r-- | format/packfile/ingest/thin_fix.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/format/packfile/ingest/thin_fix.go b/format/packfile/ingest/thin_fix.go index 83e5572a..3dad1354 100644 --- a/format/packfile/ingest/thin_fix.go +++ b/format/packfile/ingest/thin_fix.go @@ -6,7 +6,7 @@ import ( "codeberg.org/lindenii/furgit/internal/intconv" "codeberg.org/lindenii/furgit/internal/progress" - objectstorer "codeberg.org/lindenii/furgit/object/storer" + objectstore "codeberg.org/lindenii/furgit/object/store" ) // 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, objectstorer.ErrObjectNotFound) { + if errors.Is(err, objectstore.ErrObjectNotFound) { continue } |
