You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.catch(cause => Promise.reject(new Error(`Network Error: ${url}`, {cause}))) // If fetch fails, rewrite the error to include the failing URL & the cause.
963
-
.then(response => {
959
+
Module.dataFileDownloads ??= {};
960
+
fetch(packageName)
961
+
.catch((cause) => Promise.reject(new Error(`Network Error: ${packageName}`, {cause}))) // If fetch fails, rewrite the error to include the failing URL & the cause.
0 commit comments