Merge pull request #68202 from zaevi/fix_Web_WebSocket_failed

Fix WebSocket connection failed on Web.
This commit is contained in:
Rémi Verschelde 2022-11-07 08:47:03 +01:00 committed by GitHub
commit 7d4e3a0ea2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -95,6 +95,10 @@ Error EMWSPeer::connect_to_url(const String &p_url, bool p_verify_tls, Ref<X509C
requested_url += ":" + String::num(port);
}
if (!path.is_empty()) {
requested_url += path;
}
peer_sock = godot_js_websocket_create(this, requested_url.utf8().get_data(), proto_string.utf8().get_data(), &_esws_on_connect, &_esws_on_message, &_esws_on_error, &_esws_on_close);
if (peer_sock == -1) {
return FAILED;