Fix incomplete downloads. Closes #264
Cette révision appartient à :
Parent
19bf47b6d2
révision
877032a757
1 fichiers modifiés avec 6 ajouts et 0 suppressions
|
@ -188,6 +188,12 @@ abstract class Source(context: Context) : BaseSource() {
|
|||
|
||||
open fun getImageProgressResponse(page: Page): Observable<Response> {
|
||||
return networkService.requestBodyProgress(imageRequest(page), page)
|
||||
.doOnNext {
|
||||
if (!it.isSuccessful) {
|
||||
it.body().close()
|
||||
throw RuntimeException("Not a valid response")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun savePageList(chapterUrl: String, pages: List<Page>?) {
|
||||
|
|
Référencer dans un nouveau ticket