Skip to content

Commit 00fb5f1

Browse files
committed
Add to error message
1 parent 35bf15c commit 00fb5f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/diff-updater.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ async function fetchPatchDetailsFromCDNs(assetDetails) {
191191
const patchURL = resolveURL(patchPath, cdnURL);
192192
if ( patchURL === undefined ) { continue; }
193193
const response = await fetch(patchURL).catch(reason => {
194-
console.error(reason);
194+
console.error(reason, patchURL);
195195
});
196196
if ( response === undefined ) { continue; }
197197
if ( response.status === 404 ) { break; }

0 commit comments

Comments
 (0)