mirror of https://github.com/OpenTTD/OpenTTD
Fix: Spurious cancellations of HTTP content downloads (#11668)
parent
3e4dee6d0c
commit
502a52edd5
|
@ -609,6 +609,8 @@ void ClientNetworkContentSocketHandler::OnReceiveData(const char *data, size_t l
|
||||||
/* Ignore any latent data coming from a connection we closed. */
|
/* Ignore any latent data coming from a connection we closed. */
|
||||||
if (this->http_response_index == -2) return;
|
if (this->http_response_index == -2) return;
|
||||||
|
|
||||||
|
this->lastActivity = std::chrono::steady_clock::now();
|
||||||
|
|
||||||
if (this->http_response_index == -1) {
|
if (this->http_response_index == -1) {
|
||||||
if (data != nullptr) {
|
if (data != nullptr) {
|
||||||
/* Append the rest of the response. */
|
/* Append the rest of the response. */
|
||||||
|
|
Loading…
Reference in New Issue