Skip to content

Commit

Permalink
Fix scanlator filter toolbar tint
Browse files Browse the repository at this point in the history
  • Loading branch information
jobobby04 committed Sep 4, 2023
1 parent 4a00ef3 commit ebcd7e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/src/main/java/eu/kanade/domain/manga/model/Manga.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ val Manga.downloadedFilter: TriState
fun Manga.chaptersFiltered(): Boolean {
return unreadFilter != TriState.DISABLED ||
downloadedFilter != TriState.DISABLED ||
bookmarkedFilter != TriState.DISABLED
bookmarkedFilter != TriState.DISABLED ||
// SY -->
!filteredScanlators.isNullOrEmpty()
// SY <--
}
fun Manga.forceDownloaded(): Boolean {
return favorite && Injekt.get<BasePreferences>().downloadedOnly().get()
Expand Down

0 comments on commit ebcd7e8

Please sign in to comment.