Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit f92ac4f

Browse files
authored
Fix compiler error
1 parent 0fbea0c commit f92ac4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ESP_WiFiManager_Lite.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2663,7 +2663,7 @@ class ESP_WiFiManager_Lite
26632663
if (indices[i] == -1)
26642664
continue; // skip duplicates and those that are below the required quality
26652665

2666-
ListOfSSIDs += FPSTR(ESP_WM_LITE_OPTION_START) + String(WiFi.SSID(indices[i])) + FPSTR(ESP_WM_LITE_OPTION_END);
2666+
ListOfSSIDs += String(FPSTR(ESP_WM_LITE_OPTION_START)) + String(WiFi.SSID(indices[i])) + String(FPSTR(ESP_WM_LITE_OPTION_END));
26672667
list_items++; // Count number of suitable, distinct SSIDs to be included in list
26682668
}
26692669

0 commit comments

Comments
 (0)