mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 05:31:01 +00:00 
			
		
		
		
	Fix bug in HTML5 HTTPClient.
The URL parameter already has a slash, adding an extra one results in an invalid resource path
This commit is contained in:
		
							parent
							
								
									b704cfa4d5
								
							
						
					
					
						commit
						b8c73b195f
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -88,7 +88,7 @@ Error HTTPClient::prepare_request(Method p_method, const String &p_url, const Ve | |||
| 	ERR_FAIL_COND_V(port < 0, ERR_UNCONFIGURED); | ||||
| 	ERR_FAIL_COND_V(!p_url.begins_with("/"), ERR_INVALID_PARAMETER); | ||||
| 
 | ||||
| 	String url = (use_tls ? "https://" : "http://") + host + ":" + itos(port) + "/" + p_url; | ||||
| 	String url = (use_tls ? "https://" : "http://") + host + ":" + itos(port) + p_url; | ||||
| 	godot_xhr_reset(xhr_id); | ||||
| 	godot_xhr_open(xhr_id, _methods[p_method], url.utf8().get_data(), | ||||
| 			username.empty() ? NULL : username.utf8().get_data(), | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Fabio Alessandrelli
						Fabio Alessandrelli