From a596a406ba11bba12f44a5d109e3318e82738abb Mon Sep 17 00:00:00 2001 From: Adrian Scillato Date: Wed, 19 Jan 2022 12:32:38 -0300 Subject: [PATCH] Move post processing macros after user_config_override.h --- tasmota/tasmota_configurations.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasmota/tasmota_configurations.h b/tasmota/tasmota_configurations.h index 18b39deaa..add1cbebc 100644 --- a/tasmota/tasmota_configurations.h +++ b/tasmota/tasmota_configurations.h @@ -1045,8 +1045,8 @@ #define USE_UNISHOX_COMPRESSION // Add support for string compression #endif -#if defined(USE_MQTT_TLS) || defined(USE_TELEGRAM) // Enable TLS if required: - #define USE_TLS // flag indicates we need to include TLS code -#endif // USE_MQTT_TLS || USE_TELEGRAM +#if defined(USE_MQTT_TLS) // Enable TLS if required: + #define USE_TLS // flag indicates we need to include TLS code +#endif // USE_MQTT_TLS #endif // _TASMOTA_CONFIGURATIONS_H_