Excuse me, i have an issue when i have finished download data from fetcher. it will give response "null" when retrieve from onCompleted.
i had used this function to resolved issue from "request_with_file_path_already_exist" :
fetch!!.getDownload(request.id,object: Func2<Download?> { override fun call(result: Download?) { if(result == null) { enqueueData(request) } else { fetch!!.delete(request.id) enqueueData(request) } } })
Did you know how to resolved this issue ?