Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Simultaneous download will now show on start. (#911)

Cette révision appartient à :
Bram van de Kerkhof 2017-07-26 10:49:13 +02:00 révisé par GitHub
Parent 1568ac9e8a
révision cc9b77b876

Voir le fichier

@ -114,6 +114,9 @@ class Downloader(private val context: Context, private val provider: DownloadPro
val pending = queue.filter { it.status != Download.DOWNLOADED }
pending.forEach { if (it.status != Download.QUEUE) it.status = Download.QUEUE }
// Show download notification when simultaneous download > 1.
notifier.onProgressChange(queue)
downloadsRelay.call(pending)
return !pending.isEmpty()
}