From 32c7f16a7f1262d71a63fd9e87101b7f1ac5ed9c Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Mon, 15 Feb 2021 22:11:19 +0100 Subject: [PATCH] Fix Hue discovery for Zigbee and Scripting #10950 --- tasmota/support_udp.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/support_udp.ino b/tasmota/support_udp.ino index f9e89d7ab..544bbe5a1 100644 --- a/tasmota/support_udp.ino +++ b/tasmota/support_udp.ino @@ -137,7 +137,7 @@ void PollUdp(void) // Simple Service Discovery Protocol (SSDP) if (Settings.flag2.emulation) { #if defined(USE_SCRIPT_HUE) || defined(USE_ZIGBEE) - if (TasmotaGlobal.devices_present && (strstr_P(packet_buffer, PSTR("M-SEARCH")) != nullptr)) { + if (strstr_P(packet_buffer, PSTR("M-SEARCH")) != nullptr) { #else if (TasmotaGlobal.devices_present && (strstr_P(packet_buffer, PSTR("M-SEARCH")) != nullptr)) { #endif