Skip to content

Commit 36061ff

Browse files
committed
Correct IP display if forced AP Config.
1 parent b16c37e commit 36061ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/RTK_Surveyor/Display.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2088,7 +2088,7 @@ void displayWiFiConfig()
20882088

20892089
#ifdef COMPILE_AP
20902090
IPAddress myIpAddress;
2091-
if (settings.wifiConfigOverAP == true)
2091+
if (WiFi.getMode() == WIFI_AP)
20922092
myIpAddress = WiFi.softAPIP();
20932093
else
20942094
myIpAddress = WiFi.localIP();

0 commit comments

Comments
 (0)