mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-10 14:52:03 +01:00
Search status in library
This commit is contained in:
@@ -61,7 +61,8 @@ private suspend fun filterManga(query: String?, mangaList: List<Manga>): List<Ma
|
||||
manga.author.orEmpty().contains(query, true) ||
|
||||
manga.artist.orEmpty().contains(query, true) ||
|
||||
manga.genre.any { it.contains(query, true) } ||
|
||||
manga.description.orEmpty().contains(query, true)
|
||||
manga.description.orEmpty().contains(query, true) ||
|
||||
manga.status.contains(query, true)
|
||||
}
|
||||
}
|
||||
.cancellable()
|
||||
|
||||
Reference in New Issue
Block a user