From a6704c3578311a632de767899b279d62275b601f Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Mon, 10 Aug 2026 14:25:38 +0200 Subject: [PATCH] Fix image folder --- cloud/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/app.py b/cloud/app.py index 2287692..61ca1e5 100644 --- a/cloud/app.py +++ b/cloud/app.py @@ -31,7 +31,7 @@ cooking_collection = db["cooking_parameters"] telemetry_collection = db["telemetry_data"] # Ensure the camera image storage directory exists when the app starts -CAMERA_IMAGE_DIR = "storage/dishCameraImages" +CAMERA_IMAGE_DIR = "storage/dishPhotos" os.makedirs(CAMERA_IMAGE_DIR, exist_ok=True) # ---------------------------------------------------------