fix of the json upload format

This commit is contained in:
2026-08-03 01:02:40 +02:00
parent 12f7240cd2
commit 0f21e8d9ca
+2 -1
View File
@@ -168,7 +168,8 @@
try {
const response = await fetch('/upload_csv_batch', {
method: 'POST',
body: formData
body: formData,
credentials: 'include'
});
// Antwort einmalig als Text auslesen, um sowohl JSON als auch HTML-Fehler abzufangen