smanikandan14 / ThinDownloadManager

To download files and to avoid using DOWNLOAD_WITHOUT_NOTIFICATION permission if you are using Android's DownloadManager in your apps.
Apache License 2.0
783 stars 186 forks source link

Fixed failure in writing file flow. When some error occurs during wri… #75

Closed andre-pelisoli closed 8 years ago

andre-pelisoli commented 8 years ago

Fixed failure in writing file flow.

When an error occurs in writeDataToDestination the download process does not stop. It is a problem because transferData method continues reading bytes from inputstream and at the end we get a corrupted file.

The approach was finish the download process with failed status when some error occurs in writeDataToDestination method.

smanikandan14 commented 8 years ago

+1. Thank you..!!