Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .nx/version-plans/version-plan-1770304009068.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@storacha/encrypt-upload-client': patch
---

fix(encrypt-upload-client): load all CAR blocks into blockstore (#659
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,7 @@ export const getCarFileFromPublicGateway = async (gatewayURL, cid) => {
const response = await fetch(url)
if (!response.ok) {
throw new Error(
`Failed to fetch from ${url.toString()}: ${response.status} ${
response.statusText
}`
`Failed to fetch CAR file for CID ${cid} from gateway ${gatewayURL.origin}: ${response.status} ${response.statusText}`
)
}

Expand Down