You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
removed duplicated functions in class hierarchy that were bound more than once
added a check to detect this case in the future
This commit is contained in:
@@ -40,7 +40,7 @@ void HTTPRequest::_redirect_request(const String& p_new_url) {
|
||||
Error HTTPRequest::_request() {
|
||||
|
||||
//print_line("Requesting:\n\tURL: "+url+"\n\tString: "+request_string+"\n\tPort: "+itos(port)+"\n\tSSL: "+itos(use_ssl)+"\n\tValidate SSL: "+itos(validate_ssl));
|
||||
return client->connect(url,port,use_ssl,validate_ssl);
|
||||
return client->connect_to_host(url,port,use_ssl,validate_ssl);
|
||||
}
|
||||
|
||||
Error HTTPRequest::_parse_url(const String& p_url) {
|
||||
|
||||
Reference in New Issue
Block a user