From 8daf8cc91bc42172cdd3e90c56e841b0517d82f2 Mon Sep 17 00:00:00 2001 From: Stefan Kremser Date: Tue, 15 May 2018 09:56:37 +0200 Subject: [PATCH] Fixed opening SSID menu on displayUI sorry totally forgot to fix it, but here it is! --- esp8266_deauther/DisplayUI.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/esp8266_deauther/DisplayUI.cpp b/esp8266_deauther/DisplayUI.cpp index 1803589..997d987 100644 --- a/esp8266_deauther/DisplayUI.cpp +++ b/esp8266_deauther/DisplayUI.cpp @@ -818,8 +818,7 @@ void DisplayUI::changeMenu(Menu* menu) { // only open list menu if it has nodes if((menu == &apListMenu && accesspoints.count() == 0) || (menu == &stationListMenu && stations.count() == 0) || - (menu == &nameListMenu && names.count() == 0) || - (menu == &ssidListMenu && ssids.count() == 0)){ + (menu == &nameListMenu && names.count() == 0)){ return; } if (currentMenu) clearMenu(currentMenu);