Fix up camera server to match.

This commit is contained in:
Brad Nelson
2022-01-03 22:52:32 -08:00
parent fc6700668f
commit 15161a8085

View File

@ -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 ;