mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 03:41:57 +01:00
Move all DownloadService.stop calls to Downloader (#9146)
Downloader.stop is now the sole responsible for stopping the DownloadService. This will help cleanly removing DownloadService.stop when migrating to coroutines.
This commit is contained in:
parent
4efca04765
commit
0505906e7a
2 changed files with 11 additions and 7 deletions
|
@ -67,7 +67,7 @@ class DownloadManager(
|
|||
*/
|
||||
fun pauseDownloads() {
|
||||
downloader.pause()
|
||||
DownloadService.stop(context)
|
||||
downloader.stop()
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -75,7 +75,7 @@ class DownloadManager(
|
|||
*/
|
||||
fun clearQueue() {
|
||||
downloader.clearQueue()
|
||||
DownloadService.stop(context)
|
||||
downloader.stop()
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -115,8 +115,8 @@ class DownloadManager(
|
|||
val wasRunning = downloader.isRunning
|
||||
|
||||
if (downloads.isEmpty()) {
|
||||
DownloadService.stop(context)
|
||||
queue.clear()
|
||||
downloader.clearQueue()
|
||||
downloader.stop()
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -275,7 +275,6 @@ class DownloadManager(
|
|||
|
||||
if (wasRunning) {
|
||||
if (queue.isEmpty()) {
|
||||
DownloadService.stop(context)
|
||||
downloader.stop()
|
||||
} else if (queue.isNotEmpty()) {
|
||||
downloader.start()
|
||||
|
|
|
@ -167,6 +167,11 @@ class Downloader(
|
|||
}
|
||||
|
||||
isPaused = false
|
||||
|
||||
// Prevent recursion when DownloadService.onDestroy() calls downloader.stop()
|
||||
if (DownloadService.isRunning.value) {
|
||||
DownloadService.stop(context)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -217,9 +222,9 @@ class Downloader(
|
|||
completeDownload(it)
|
||||
},
|
||||
{ error ->
|
||||
DownloadService.stop(context)
|
||||
logcat(LogPriority.ERROR, error)
|
||||
notifier.onError(error.message)
|
||||
stop()
|
||||
},
|
||||
)
|
||||
}
|
||||
|
@ -634,7 +639,7 @@ class Downloader(
|
|||
queue.remove(download)
|
||||
}
|
||||
if (areAllDownloadsFinished()) {
|
||||
DownloadService.stop(context)
|
||||
stop()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue