mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Fix HTTPFetchRequest performing a GET request if post_data is supplied
Instead, perform a POST request with post_data.
This commit is contained in:
		@@ -262,7 +262,7 @@ HTTPFetchOngoing::HTTPFetchOngoing(HTTPFetchRequest request_, CurlHandlePool *po
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Set POST (or GET) data
 | 
			
		||||
	if (request.post_fields.empty()) {
 | 
			
		||||
	if (request.post_fields.empty() && request.post_data.empty()) {
 | 
			
		||||
		curl_easy_setopt(curl, CURLOPT_HTTPGET, 1);
 | 
			
		||||
	} else if (request.multipart) {
 | 
			
		||||
		curl_httppost *last = NULL;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user