mirror of https://github.com/procxx/kepka.git
Fix one more crash in CDN file download.
The sessionTimedOut could remove a session right between a request for a file part and a request for additional cdn file hashes. In this case requestData.sessionIndex was not updated and this was leading to an assertion violation in changeRequestedAmount.
This commit is contained in:
parent
63020ec302
commit
960f50824d
|
@ -252,7 +252,9 @@ void DownloadManagerMtproto::requestSucceeded(
|
|||
|
||||
if (duration >= kBadRequestDurationThreshold) {
|
||||
DEBUG_LOG(("Duration too large, signaling time out."));
|
||||
sessionTimedOut(dcId, index);
|
||||
crl::on_main(this, [=] {
|
||||
sessionTimedOut(dcId, index);
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (amountAtRequestStart == data.maxWaitedAmount
|
||||
|
|
Loading…
Reference in New Issue