Fix a crash when retrying pages

This commit is contained in:
len 2017-09-08 17:59:43 +02:00
parent 8586014e17
commit c65a01a5f0

View File

@ -327,9 +327,10 @@ class ReaderPresenter(
fun retryPage(page: Page?) {
if (page != null && source is HttpSource) {
page.status = Page.QUEUE
val uri = page.uri
if (uri != null && !page.chapter.isDownloaded) {
chapterCache.removeFileFromCache(uri.encodedPath.substringAfterLast('/'))
val imageUrl = page.imageUrl
if (imageUrl != null && !page.chapter.isDownloaded) {
val key = DiskUtil.hashKeyForDisk(page.url)
chapterCache.removeFileFromCache(key)
}
loader.retryPage(page)
}