Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Abandoned
-
3.3.0
-
None
-
Android
Description
There is a threading issue when multiple files are getting downloaded and when we abort one of the download. Way to reproduce the issue.
- Give a request to download a file1.
- Call abort() for that file download.
- On callback of the abort start downloading file2.
- now abort file2.
Current behavior - the abort() function returns the callback but actual thread but the download still happens in the background.
Expected - The download should not continue when aborting the second file.
Code details.
abort() function actually removes the requests form activeRequests.
but finally() block of download tries to remove the requests from activeRequests again causing it to fail.