Open nishant-sbnri opened 6 months ago
This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.
This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.
In the function
download(_: String, _: String)
ofPdfDownloader.kt
,listener.onDownloadStart()
was being invoked in theDispatchers.IO
coroutine context.This is resulting in Exception if the observer of this callback wants to make some UI change on main thread.
Added
Dispatchers.Main
coroutine scope when invokingonDownloadStart()
callback.