We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 961fd51 commit 7092c9cCopy full SHA for 7092c9c
src/common/utils/fileUtils.ts
@@ -27,7 +27,7 @@ export async function downloadFile(params: {
27
error.name = ErrorName.URL_MAY_NOT_INCLUDE_BASIC_AITH;
28
throw error;
29
}
30
- let fetchSignal = AbortSignal.any([abortController.signal, timeoutSignal])
+ const fetchSignal = AbortSignal.any([abortController.signal, timeoutSignal])
31
const response = await fetch(url, { method: "GET", headers, signal: fetchSignal })
32
if (!response.body) {
33
throw new Error("Response body unavailable");
0 commit comments