Browse Source

Delete from the download queue on the main thread. It could fix some crashes

len 9 năm trước cách đây
mục cha
commit
0de214c3b5

+ 6 - 4
app/src/main/java/eu/kanade/tachiyomi/data/download/DownloadManager.kt

@@ -57,6 +57,12 @@ class DownloadManager(private val context: Context, private val sourceManager: S
                 .lift(DynamicConcurrentMergeOperator<Download, Download>({ downloadChapter(it) }, threadsSubject))
                 .onBackpressureBuffer()
                 .observeOn(AndroidSchedulers.mainThread())
+                .doOnNext {
+                    // Delete successful downloads from queue
+                    if (it.status == Download.DOWNLOADED) {
+                        queue.del(it)
+                    }
+                }
                 .map { download -> areAllDownloadsFinished() }
                 .subscribe({ finished ->
                     if (finished!!) {
@@ -302,10 +308,6 @@ class DownloadManager(private val context: Context, private val sourceManager: S
         }
         download.totalProgress = actualProgress
         download.status = status
-        // Delete successful downloads from queue after notifying
-        if (status == Download.DOWNLOADED) {
-            queue.del(download)
-        }
     }
 
     // Return the page list from the chapter's directory if it exists, null otherwise