1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Replace some problematic uses of String::num to String::num_int64

This commit is contained in:
Adam Scott
2025-01-15 12:14:17 -05:00
parent 4ce466d7fa
commit 33e16435f5
10 changed files with 12 additions and 12 deletions

View File

@@ -93,7 +93,7 @@ Error EMWSPeer::connect_to_url(const String &p_url, Ref<TLSOptions> p_tls_option
requested_url = scheme + host;
if (port && ((scheme == "ws://" && port != 80) || (scheme == "wss://" && port != 443))) {
requested_url += ":" + String::num(port);
requested_url += ":" + String::num_int64(port);
}
if (!path.is_empty()) {