File diff r23521:26cb73a2624c → r23522:1fb564b1efa6
src/network/network_content.cpp
Show inline comments
 
@@ -552,13 +552,14 @@ void ClientNetworkContentSocketHandler::
 
void ClientNetworkContentSocketHandler::OnFailure()
 
{
 
	/* If we fail, download the rest via the 'old' system. */
 
	uint files, bytes;
 
	this->DownloadSelectedContent(files, bytes, true);
 

	
 
	this->http_response.Reset();
 
	this->http_response.clear();
 
	this->http_response.shrink_to_fit();
 
	this->http_response_index = -2;
 

	
 
	if (this->curFile != NULL) {
 
		/* Revert the download progress when we are going for the old system. */
 
		long size = ftell(this->curFile);
 
		if (size > 0) this->OnDownloadProgress(this->curInfo, (int)-size);