Skip to content

Commit

Permalink
Add to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Dec 26, 2023
1 parent 35bf15c commit 00fb5f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/diff-updater.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ async function fetchPatchDetailsFromCDNs(assetDetails) {
const patchURL = resolveURL(patchPath, cdnURL);
if ( patchURL === undefined ) { continue; }
const response = await fetch(patchURL).catch(reason => {
console.error(reason);
console.error(reason, patchURL);
});
if ( response === undefined ) { continue; }
if ( response.status === 404 ) { break; }
Expand Down

0 comments on commit 00fb5f1

Please sign in to comment.