From 14f45ac86b2027396c38cc501c2da82d9d0c6576 Mon Sep 17 00:00:00 2001 From: Leonie <135235065+DenialOfIntelligence@users.noreply.github.com> Date: Tue, 31 Oct 2023 12:27:18 +0100 Subject: [PATCH] Revert part of 5381a6b32d362c0129d3637bcd0fc0bac77c9df4 --- simple_web/simple_web.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/simple_web/simple_web.ino b/simple_web/simple_web.ino index 157c8f0..fe966cf 100644 --- a/simple_web/simple_web.ino +++ b/simple_web/simple_web.ino @@ -51,6 +51,8 @@ void setup() { digitalWrite(LED_BUILTIN, LOW); request->send(200, "text/plain", "Was there ever anything here?"); }); + + server.onNotFound(notFound); server.begin();