Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ESP_WiFiManager-Impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -1908,7 +1908,7 @@ int ESP_WiFiManager::scanWifiNetworks(int **indicesptr)
{
LOGDEBUG(F("Scanning Network"));

int n = WiFi.scanNetworks();
int n = WiFi.scanNetworks(false, true);

LOGDEBUG1(F("scanWifiNetworks: Done, Scanned Networks n ="), n);

Expand Down
2 changes: 1 addition & 1 deletion src_cpp/ESP_WiFiManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1905,7 +1905,7 @@ int ESP_WiFiManager::scanWifiNetworks(int **indicesptr)
{
LOGDEBUG(F("Scanning Network"));

int n = WiFi.scanNetworks();
int n = WiFi.scanNetworks(false, true);

LOGDEBUG1(F("scanWifiNetworks: Done, Scanned Networks n ="), n);

Expand Down
2 changes: 1 addition & 1 deletion src_h/ESP_WiFiManager-Impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -1908,7 +1908,7 @@ int ESP_WiFiManager::scanWifiNetworks(int **indicesptr)
{
LOGDEBUG(F("Scanning Network"));

int n = WiFi.scanNetworks();
int n = WiFi.scanNetworks(false, true);

LOGDEBUG1(F("scanWifiNetworks: Done, Scanned Networks n ="), n);

Expand Down