Changes since 24.8.4
Fixes
-
Notify listener for all InputStreamDownloadCallback failures (#21994)
Commit · Pull request · IssueMakes sure that transfer progress listeners are notified also for DownloadResponse.error return value and unchecked exception thrown by InputStreamDownloadCallback.
-
Notify listeners when InputStream download handler callback fails (#21952)
Commit · Pull requestWhen a callback provided to DownloadHandler.fromInputStream throws an IOException the transfer progress listeners are not notified about the error. This change catched IOException potentially thrown by the callback and notifies the registered listeners. Part of #21931