Merge branch 'master' of github.com:meshtastic/Meshtastic-device

This commit is contained in:
Thomas Göttgens 2022-09-23 23:09:20 +02:00
commit 347af0210e

View File

@ -110,14 +110,9 @@ bool isSoftAPForced()
bool isWifiAvailable() bool isWifiAvailable()
{ {
// If wifi status is connected, return true regardless of the radio configuration.
if (isSoftAPForced()) {
return true;
}
const char *wifiName = config.network.wifi_ssid; if (config.network.wifi_enabled && ((config.network.wifi_ssid[0]) || forcedSoftAP)) {
if (*wifiName) {
return true; return true;
} else { } else {
return false; return false;