Fix empty header issue

This commit is contained in:
Martin Becker
2017-07-19 11:12:00 +02:00
parent 32cb052f23
commit 669f0b489e
3 changed files with 7 additions and 5 deletions

View File

@ -137,7 +137,7 @@ void setup() {
// connect to websocket
webSocket.begin(ws_host, ws_port, socketUrl);
webSocket.setExtraHeaders(""); // remove "Origin: file://" header because it breaks the connection with Spring's default websocket config
webSocket.setExtraHeaders(); // remove "Origin: file://" header because it breaks the connection with Spring's default websocket config
// webSocket.setExtraHeaders("foo: I am so funny\r\nbar: not"); // some headers, in case you feel funny
webSocket.onEvent(webSocketEvent);
}