missed a line last commit

This commit is contained in:
Jays2Kings 2022-04-28 17:45:34 -04:00
parent bb0e903ce2
commit b1819dfdcd

View file

@ -59,6 +59,9 @@ fun Manga.shouldDownloadNewChapters(db: DatabaseHelper, prefs: PreferencesHelper
if (categoriesForManga.any { it in excludedCategories }) return false
// Included category not selected
if (includedCategories.isEmpty()) return true
return categoriesForManga.any { it in includedCategories }
}