diff --git a/tasmota/support_command.ino b/tasmota/support_command.ino index cee21783e..6e0a74c93 100644 --- a/tasmota/support_command.ino +++ b/tasmota/support_command.ino @@ -1600,8 +1600,9 @@ void CmndTeleperiod(void) if ((XdrvMailbox.payload >= 0) && (XdrvMailbox.payload < 3601)) { Settings.tele_period = (1 == XdrvMailbox.payload) ? TELE_PERIOD : XdrvMailbox.payload; if ((Settings.tele_period > 0) && (Settings.tele_period < 10)) Settings.tele_period = 10; // Do not allow periods < 10 seconds - tele_period = Settings.tele_period; +// tele_period = Settings.tele_period; } + tele_period = Settings.tele_period; // Show teleperiod data also on empty command ResponseCmndNumber(Settings.tele_period); }