summaryrefslogtreecommitdiffstats
path: root/editor/debugger
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2024-05-22 10:22:50 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2024-09-27 19:42:30 +0800
commit6516ca6b11a6241d7908eb322343d44c10050d98 (patch)
tree4ab5d25c59eb44498f47b981714b88cdc5fe519c /editor/debugger
parent506d6e427a4eecfc1e5e5ee1180019a876119701 (diff)
downloadredot-engine-6516ca6b11a6241d7908eb322343d44c10050d98.tar.gz
Parse fragment from URL
Diffstat (limited to 'editor/debugger')
-rw-r--r--editor/debugger/editor_debugger_server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/debugger/editor_debugger_server.cpp b/editor/debugger/editor_debugger_server.cpp
index c0efc6a1fc..9ec6058132 100644
--- a/editor/debugger/editor_debugger_server.cpp
+++ b/editor/debugger/editor_debugger_server.cpp
@@ -77,8 +77,8 @@ Error EditorDebuggerServerTCP::start(const String &p_uri) {
// Optionally override
if (!p_uri.is_empty() && p_uri != "tcp://") {
- String scheme, path;
- Error err = p_uri.parse_url(scheme, bind_host, bind_port, path);
+ String scheme, path, fragment;
+ Error err = p_uri.parse_url(scheme, bind_host, bind_port, path, fragment);
ERR_FAIL_COND_V(err != OK, ERR_INVALID_PARAMETER);
ERR_FAIL_COND_V(!bind_host.is_valid_ip_address() && bind_host != "*", ERR_INVALID_PARAMETER);
}