From 15161a808573533817801c7e91bb2484d6b2f3f5 Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Mon, 3 Jan 2022 22:52:32 -0800 Subject: [PATCH] Fix up camera server to match. --- ueforth/esp32/camera_server.fs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ueforth/esp32/camera_server.fs b/ueforth/esp32/camera_server.fs index 9e98037..82d6299 100644 --- a/ueforth/esp32/camera_server.fs +++ b/ueforth/esp32/camera_server.fs @@ -66,10 +66,11 @@ Frame(); ; : handle1 - handleClient - s" /" path str= if handle-index exit then - s" /image" path str= if handle-image exit then - notfound-response + handleClient if + s" /" path str= if handle-index exit then + s" /image" path str= if handle-image exit then + notfound-response + then ; : do-serve begin ['] handle1 catch drop pause again ;