We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 492c11a + 163b832 commit f00ef2cCopy full SHA for f00ef2c
Networking/HTTP/HTTPLogic.cc
@@ -94,8 +94,8 @@ namespace litecore::net {
94
// the new type can be handled the same way.
95
if ( _isWebSocket ) {
96
Address address = {_address.scheme() == "wss"_sl ? "https"_sl : "http"_sl, _address.hostname(),
97
- _address.port(), _address.url()};
98
- rq << string(Address::toURL(*(C4Address*)&address));
+ _address.port(), _address.path()};
+ rq << string(Address::toURL(*(C4Address*)address));
99
} else {
100
rq << string(_address.url());
101
}
0 commit comments