From bc5d4fed3c1523b253d71bd980a3a4c2f8a110a0 Mon Sep 17 00:00:00 2001 From: Damian Schneider Date: Tue, 2 Sep 2025 19:46:02 +0200 Subject: [PATCH] remove early return from initconnection() --- wled00/wled.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/wled00/wled.cpp b/wled00/wled.cpp index 9b15f7a32a..38e19de372 100644 --- a/wled00/wled.cpp +++ b/wled00/wled.cpp @@ -649,7 +649,6 @@ void WLED::initConnection() if (!WLED_WIFI_CONFIGURED) { DEBUG_PRINTLN(F("No connection configured.")); if (!apActive) initAP(); // instantly go to ap mode - return; } else if (!apActive) { if (apBehavior == AP_BEHAVIOR_ALWAYS) { DEBUG_PRINTLN(F("Access point ALWAYS enabled."));