|
@@ -361,6 +361,7 @@ class ReaderPresenter(
|
|
|
selectedChapter.chapter.read = true
|
|
|
updateTrackChapterRead(selectedChapter)
|
|
|
deleteChapterIfNeeded(selectedChapter)
|
|
|
+ deleteChapterFromDownloadQueue(currentChapters.currChapter)
|
|
|
}
|
|
|
|
|
|
if (selectedChapter != currentChapters.currChapter) {
|
|
@@ -370,6 +371,16 @@ class ReaderPresenter(
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Removes [currentChapter] from download queue
|
|
|
+ * if setting is enabled and [currentChapter] is queued for download
|
|
|
+ */
|
|
|
+ private fun deleteChapterFromDownloadQueue(currentChapter: ReaderChapter) {
|
|
|
+ downloadManager.getChapterDownloadOrNull(currentChapter.chapter)?.let { download ->
|
|
|
+ downloadManager.deletePendingDownload(download)
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Determines if deleting option is enabled and nth to last chapter actually exists.
|
|
|
* If both conditions are satisfied enqueues chapter for delete
|