Skip to content

Commit

Permalink
Fix GCP read impl
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCutter committed Nov 11, 2024
1 parent a980f51 commit 9af87c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/gcp/gcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func (s *Storage) ReadTile(ctx context.Context, l, i, sz uint64) ([]byte, error)
}

func (s *Storage) ReadEntryBundle(ctx context.Context, i, sz uint64) ([]byte, error) {
return s.get(ctx, layout.EntriesPath(i, sz))
return s.get(ctx, s.entriesPath(i, sz))
}

// get returns the requested object.
Expand Down

0 comments on commit 9af87c0

Please sign in to comment.