mirror of
https://github.com/mihonapp/mihon.git
synced 2024-12-26 19:08:25 +01:00
Sort and remove duplicates in genres (#6021)
* Sort and remove duplicates in genres Co-authored-by: ivaniskandar <12537387+ivaniskandar@users.noreply.github.com> * Remove Sort and filter out blank genre Co-authored-by: ivaniskandar <12537387+ivaniskandar@users.noreply.github.com>
This commit is contained in:
parent
b0f87fdd21
commit
7940117577
@ -36,7 +36,9 @@ interface Manga : SManga {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun getGenres(): List<String>? {
|
fun getGenres(): List<String>? {
|
||||||
return genre?.split(", ")?.map { it.trim() }
|
if (genre.isNullOrBlank()) return null
|
||||||
|
return genre?.split(", ")?.map { it.trim() } ?.filterNot { it.isBlank() } ?.distinct()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setChapterFlags(flag: Int, mask: Int) {
|
private fun setChapterFlags(flag: Int, mask: Int) {
|
||||||
|
Loading…
Reference in New Issue
Block a user