Skip to content
Draft
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
3 changes: 2 additions & 1 deletion packages/playground/blueprints/src/lib/v1/resources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,8 @@ export abstract class FetchResource extends Resource<File> {
throw new Error(
`Could not download "${url}".\n\n` +
`Confirm that the URL is correct, the server is reachable, and the file is` +
`actually served at that URL. Original error: \n ${e}`
`actually served at that URL. Original error: \n ${e}`,
{ cause: e }
);
}
}
Expand Down