Resolve upload errors.

This commit is contained in:
Patrick Fic
2025-11-04 14:18:02 -08:00
parent 9b20068186
commit 782af557f8
2 changed files with 4 additions and 1 deletions

View File

@@ -249,9 +249,12 @@ function* uploadToLocalMediaServer(photos, bodyshop, jobid) {
}
} catch (error) {
console.log("Error uploading documents:", error.message, JSON.stringify(error, null, 2));
throw error;
}
} catch (error) {
console.log("Uncaught error", error);
throw error;
}
}