Made some changes, +1 is a workarround

This commit is contained in:
CommanderRedYT
2022-02-26 16:56:40 +01:00
parent 5bba53bfb9
commit 86cae5d564
2 changed files with 4 additions and 4 deletions

View File

@ -331,7 +331,7 @@ std::string get_wifi_security_string(wifi_auth_mode_t authMode)
switch (authMode)
{
case WIFI_AUTH_OPEN:
return "nopass";
return "";
case WIFI_AUTH_WEP:
return "WEP";
case WIFI_AUTH_WPA_PSK:
@ -339,7 +339,7 @@ std::string get_wifi_security_string(wifi_auth_mode_t authMode)
case WIFI_AUTH_WPA_WPA2_PSK:
return "WPA";
default:
return "unknown";
return "";
}
}