From 31cdbb13b7ec2e4a1f91da64b0c6bdaf1331d81d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Kristan?= Date: Mon, 21 Jul 2025 12:24:21 +0200 Subject: [PATCH] Fix cherry-pick error --- wled00/wled.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/wled00/wled.cpp b/wled00/wled.cpp index adedde531..349b253bb 100644 --- a/wled00/wled.cpp +++ b/wled00/wled.cpp @@ -464,8 +464,6 @@ void WLED::setup() } #endif - // fill in unique mdns default - if (strcmp(cmDNS, DEFAULT_MDNS_NAME) == 0) sprintf_P(cmDNS, PSTR("wled-%*s"), 6, escapedMac.c_str() + 6); #ifndef WLED_DISABLE_MQTT if (mqttDeviceTopic[0] == 0) sprintf_P(mqttDeviceTopic, PSTR("wled/%*s"), 6, escapedMac.c_str() + 6); if (mqttClientID[0] == 0) sprintf_P(mqttClientID, PSTR("WLED-%*s"), 6, escapedMac.c_str() + 6);