mirror of
https://github.com/luc-github/ESP3D.git
synced 2025-10-31 11:56:48 -07:00
Space do not generate error anymore
so remove the limitation thanks @szepnorbee for the feedback
This commit is contained in:
@@ -70,9 +70,9 @@ bool CONFIG::isSSIDValid(const char * ssid)
|
||||
for (int i=0; i < strlen(ssid); i++) {
|
||||
c = ssid[i];
|
||||
//if (!(isdigit(c) || isalpha(c))) return false;
|
||||
if (c==' ') {
|
||||
return false;
|
||||
}
|
||||
//if (c==' ') {
|
||||
// return false;
|
||||
//}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user