Skip to content

Commit 1e4532c

Browse files
committed
Allow wifiUpdate during browser config so that dns can run
1 parent 16f44b1 commit 1e4532c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Firmware/RTK_Everywhere/Network.ino

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,11 @@ const char * networkTypeToString(uint8_t type)
10381038
void networkTypeUpdate(uint8_t networkType)
10391039
{
10401040
if(inWiFiConfigMode())
1041-
return; //Avoid network layer while in Browser Config Mode
1041+
{
1042+
//Avoid the full network layer while in Browser Config Mode
1043+
wifiUpdate();
1044+
return;
1045+
}
10421046

10431047
char errorMsg[64];
10441048
NETWORK_DATA *network;

0 commit comments

Comments
 (0)