Adapt the GET after 8cc367638f
The thing to GET is now lool/ws/ + the actual document URL.
This commit is contained in:
parent
f8ebb54af0
commit
ccdac2f767
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ protected:
|
||||||
#else
|
#else
|
||||||
HTTPClientSession cs(_uri.getHost(), _uri.getPort());
|
HTTPClientSession cs(_uri.getHost(), _uri.getPort());
|
||||||
#endif
|
#endif
|
||||||
HTTPRequest request(HTTPRequest::HTTP_GET, args[0]);
|
HTTPRequest request(HTTPRequest::HTTP_GET, std::string("lool/ws/") + args[0]);
|
||||||
HTTPResponse response;
|
HTTPResponse response;
|
||||||
WebSocket ws(cs, request, response);
|
WebSocket ws(cs, request, response);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue