mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-04 21:55:05 +01:00
fix MAL search novel filter (#6279)
This commit is contained in:
parent
fe9ea50356
commit
8acce011b5
@ -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") }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user