Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Fix bug in default category downloading logic (#7525)

Cette révision appartient à :
Trevor Paley 2022-07-13 06:18:17 -07:00 révisé par GitHub
Parent ba93060e59
révision 86a018ebad
Aucune clé n'a été trouvée pour cette signature dans la base de données
ID de la clé GPG: 4AEE18F83AFDEB23

Voir le fichier

@ -53,7 +53,7 @@ fun Manga.removeCovers(coverCache: CoverCache = Injekt.get()): Int {
fun DomainManga.shouldDownloadNewChapters(dbCategories: List<Long>, prefs: PreferencesHelper): Boolean {
if (!favorite) return false
val categories = dbCategories.ifEmpty { listOf(0) }
val categories = dbCategories.ifEmpty { listOf(0L) }
// Boolean to determine if user wants to automatically download new chapters.
val downloadNewChapter = prefs.downloadNewChapter().get()