Merge pull request #4040 from TD-er/bugfix/minimal_ssid_char

[WiFi] Revert accidentally reject SSID < 8 chars
This commit is contained in:
TD-er
2022-05-03 21:59:51 +02:00
committed by GitHub
@@ -103,7 +103,6 @@ bool WiFi_AP_Candidate::usable() const {
}
}
if (!isHidden && (ssid.isEmpty())) { return false; }
if (ssid.length() < 8) {return false; }
return true;
}