You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The WiFi.html file is only looking for more than one network. I thought of buying another router or maybe adding an extender.
In function scanAPs the line:
if (data.result.inProgress=="0" && data.result.APs.length>1) {
should be:
if (data.result.inProgress=="0" && data.result.APs.length>0) {
The text was updated successfully, but these errors were encountered:
The WiFi.html file is only looking for more than one network. I thought of buying another router or maybe adding an extender.
In function scanAPs the line:
if (data.result.inProgress=="0" && data.result.APs.length>1) {
should be:
if (data.result.inProgress=="0" && data.result.APs.length>0) {
The text was updated successfully, but these errors were encountered: