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

@@ -6,7 +6,7 @@
"scheme": "imex-mobile-scheme", "scheme": "imex-mobile-scheme",
"userInterfaceStyle": "automatic", "userInterfaceStyle": "automatic",
"extra": { "extra": {
"expover": "15", "expover": "17",
"eas": { "eas": {
"projectId": "ffe01f3a-d507-4698-82cd-da1f1cad450b" "projectId": "ffe01f3a-d507-4698-82cd-da1f1cad450b"
} }

View File

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