There was an error while loading. Please reload this page.
1 parent e3098a5 commit c6a7d25Copy full SHA for c6a7d25
1 file changed
src/Cropper.Blazor/Client/wwwroot/index.html
@@ -54,6 +54,7 @@
54
return (async function () {
55
const response = await fetch(defaultUri + '.br', { cache: 'no-cache' });
56
if (!response.ok) {
57
+ alert(`Failed to fetch ${name}: ${response.statusText}`);
58
throw new Error(response.statusText);
59
}
60
const originalResponseBuffer = await response.arrayBuffer();
0 commit comments