From ed685d4a5eaf95b283dfe9e66446c46d9e3b7076 Mon Sep 17 00:00:00 2001 From: proddy Date: Mon, 30 Sep 2024 15:55:46 +0200 Subject: [PATCH] remove duplicate condition --- src/console.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/console.cpp b/src/console.cpp index 6c90b9815..bd7aff5e0 100644 --- a/src/console.cpp +++ b/src/console.cpp @@ -105,8 +105,6 @@ static void setup_commands(std::shared_ptr & commands) { to_app(shell).show_sensor_values(shell); } else if (command == F_(mqtt)) { Mqtt::show_mqtt(shell); - } else if (command == F_(commands)) { - Command::show_all(shell); } else { shell.printfln("Unknown show command"); }