From b719b484d79860fd92623eecd9ed337b63d51905 Mon Sep 17 00:00:00 2001 From: DrRandom <37899881+zekageri@users.noreply.github.com> Date: Sat, 17 Aug 2024 23:27:26 +0200 Subject: [PATCH] Replaced #error with #warning so it compiles even if the https server support is not enabled (#172) --- src/PsychicHttpsServer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PsychicHttpsServer.h b/src/PsychicHttpsServer.h index e6542c6..51f8210 100644 --- a/src/PsychicHttpsServer.h +++ b/src/PsychicHttpsServer.h @@ -35,5 +35,5 @@ class PsychicHttpsServer : public PsychicHttpServer #endif // PsychicHttpsServer_h #else - #error ESP-IDF https server support not enabled. + #warning ESP-IDF https server support not enabled. #endif // CONFIG_ESP_HTTPS_SERVER_ENABLE \ No newline at end of file