fix MAL search novel filter (#6279)
This commit is contained in:
parent
fe9ea50356
commit
8acce011b5
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class MyAnimeListApi(private val client: OkHttpClient, interceptor: MyAnimeListI
|
||||||
async { getMangaDetails(id) }
|
async { getMangaDetails(id) }
|
||||||
}
|
}
|
||||||
.awaitAll()
|
.awaitAll()
|
||||||
.filter { trackSearch -> trackSearch.publishing_type != "novel" }
|
.filter { trackSearch -> !trackSearch.publishing_type.contains("novel") }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue