You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Parse fragment from URL
This commit is contained in:
@@ -49,7 +49,8 @@ Error HTTPRequest::_parse_url(const String &p_url) {
|
||||
redirections = 0;
|
||||
|
||||
String scheme;
|
||||
Error err = p_url.parse_url(scheme, url, port, request_string);
|
||||
String fragment;
|
||||
Error err = p_url.parse_url(scheme, url, port, request_string, fragment);
|
||||
ERR_FAIL_COND_V_MSG(err != OK, err, vformat("Error parsing URL: '%s'.", p_url));
|
||||
|
||||
if (scheme == "https://") {
|
||||
|
||||
Reference in New Issue
Block a user