fix: Catch failures in image upload

This commit is contained in:
Tom Moor
2026-04-13 18:00:24 -04:00
parent b4c1f88731
commit 383b5d3e22
+3
View File
@@ -95,6 +95,9 @@ export class UploadPlugin extends Plugin {
],
options
);
})
.catch(() => {
// Silently handle fetch failures (e.g. CORS, network errors)
});
}