Skip to content

Commit 8daf8cc

Browse files
author
Stefan Kremser
committed
Fixed opening SSID menu on displayUI
sorry totally forgot to fix it, but here it is!
1 parent dc10c87 commit 8daf8cc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

esp8266_deauther/DisplayUI.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -818,8 +818,7 @@ void DisplayUI::changeMenu(Menu* menu) {
818818
// only open list menu if it has nodes
819819
if((menu == &apListMenu && accesspoints.count() == 0) ||
820820
(menu == &stationListMenu && stations.count() == 0) ||
821-
(menu == &nameListMenu && names.count() == 0) ||
822-
(menu == &ssidListMenu && ssids.count() == 0)){
821+
(menu == &nameListMenu && names.count() == 0)){
823822
return;
824823
}
825824
if (currentMenu) clearMenu(currentMenu);

0 commit comments

Comments
 (0)