From c1a901138c796229306599aec3fd6e066041ea26 Mon Sep 17 00:00:00 2001 From: Adrian Scillato <35405447+ascillato@users.noreply.github.com> Date: Sat, 30 Jan 2021 23:19:11 -0300 Subject: [PATCH] Return to previous output of IPADDRESS1 command --- tasmota/support_command.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/support_command.ino b/tasmota/support_command.ino index 87b2ad4f7..e2942945b 100644 --- a/tasmota/support_command.ino +++ b/tasmota/support_command.ino @@ -1509,7 +1509,7 @@ void CmndIpAddress(void) { if ((XdrvMailbox.index > 0) && (XdrvMailbox.index <= 4)) { char network_address[22]; - ext_snprintf_P(network_address, sizeof(network_address), PSTR(" = %_I"), (uint32_t)NetworkAddress()); + ext_snprintf_P(network_address, sizeof(network_address), PSTR(" (%_I)"), (uint32_t)NetworkAddress()); if (!XdrvMailbox.usridx) { ResponseClear(); for (uint32_t i = 0; i < 4; i++) {