Minor changes
This commit is contained in:
parent
90e0e0b72a
commit
19c713ebb2
1 changed files with 3 additions and 3 deletions
|
@ -332,9 +332,9 @@ class ReaderPresenter : BasePresenter<ReaderActivity>() {
|
||||||
fun retryPage(page: Page?) {
|
fun retryPage(page: Page?) {
|
||||||
if (page != null && source is OnlineSource) {
|
if (page != null && source is OnlineSource) {
|
||||||
page.status = Page.QUEUE
|
page.status = Page.QUEUE
|
||||||
if (page.imagePath != null) {
|
val path = page.imagePath
|
||||||
val file = File(page.imagePath)
|
if (!path.isNullOrEmpty() && !page.chapter.isDownloaded) {
|
||||||
chapterCache.removeFileFromCache(file.name)
|
chapterCache.removeFileFromCache(File(path).name)
|
||||||
}
|
}
|
||||||
loader.retryPage(page)
|
loader.retryPage(page)
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue