You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a ws url with query parameters like ws://localhost/test?uid=abc, the current implementation forgets to append the query string in the _writeHandshake method.
For a ws url with query parameters like ws://localhost/test?uid=abc, the current implementation forgets to append the query string in the _writeHandshake method.
{{{
private void _writeHandshake() throws IOException {
String path = this.uri.getPath();
if (path.indexOf("/") != 0) {
path = "/" + path;
}
// code to add, simple fix:
if (uri.getRawQuery() != null) {
path += "?" + uri.getRawQuery();
}
}}}
The text was updated successfully, but these errors were encountered: