Skip to content

Commit 388c6a1

Browse files
committed
Fix issue espressif#5507 "Constructor WebServer::WebServer(IPAddress addr, int port) produces an unexpected result" (cont.)
This fixes what I think might be the cause of CI failures on GitHub for the previous commit, namely the absence of an include file in examples/MultiHomedServers.
1 parent 55a5d03 commit 388c6a1

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

libraries/WebServer/examples/MultiHomedServers/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

libraries/WebServer/examples/MultiHomedServers/MultiHomedServers.ino

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@
5454
* MultiHomedServers was originally based on HelloServer.
5555
*/
5656

57-
#include "secret.h"
58-
const char* ssid = MySSID;
59-
const char* password = MyPASSWORD;
57+
const char* ssid = "........";
58+
const char* password = "........";
6059
const char *apssid = "ESP32";
6160

6261
WebServer *server0, *server1, *server2;

0 commit comments

Comments
 (0)