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 35bf15c commit 00fb5f1Copy full SHA for 00fb5f1
src/js/diff-updater.js
@@ -191,7 +191,7 @@ async function fetchPatchDetailsFromCDNs(assetDetails) {
191
const patchURL = resolveURL(patchPath, cdnURL);
192
if ( patchURL === undefined ) { continue; }
193
const response = await fetch(patchURL).catch(reason => {
194
- console.error(reason);
+ console.error(reason, patchURL);
195
});
196
if ( response === undefined ) { continue; }
197
if ( response.status === 404 ) { break; }
0 commit comments