From 782af557f82d56b28715cbe17312150aae6541e2 Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Tue, 4 Nov 2025 14:18:02 -0800 Subject: [PATCH] Resolve upload errors. --- app.json | 2 +- redux/photos/photos.sagas.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app.json b/app.json index 5804570..3aae682 100644 --- a/app.json +++ b/app.json @@ -6,7 +6,7 @@ "scheme": "imex-mobile-scheme", "userInterfaceStyle": "automatic", "extra": { - "expover": "15", + "expover": "17", "eas": { "projectId": "ffe01f3a-d507-4698-82cd-da1f1cad450b" } diff --git a/redux/photos/photos.sagas.js b/redux/photos/photos.sagas.js index a598db3..1a6f2a7 100644 --- a/redux/photos/photos.sagas.js +++ b/redux/photos/photos.sagas.js @@ -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; } }