Skip to content

Commit f00ef2c

Browse files
committed
Merge commit '163b832d936f795c2c2a3cf15990c03787616294' into merge/3.2_master
2 parents 492c11a + 163b832 commit f00ef2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Networking/HTTP/HTTPLogic.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ namespace litecore::net {
9494
// the new type can be handled the same way.
9595
if ( _isWebSocket ) {
9696
Address address = {_address.scheme() == "wss"_sl ? "https"_sl : "http"_sl, _address.hostname(),
97-
_address.port(), _address.url()};
98-
rq << string(Address::toURL(*(C4Address*)&address));
97+
_address.port(), _address.path()};
98+
rq << string(Address::toURL(*(C4Address*)address));
9999
} else {
100100
rq << string(_address.url());
101101
}

0 commit comments

Comments
 (0)