fix(library): exclude light novels from anilist manga resolve

This commit is contained in:
afiqzudinhadi 2026-08-05 15:00:16 +08:00
parent 8a046a0ea2
commit 3eb89772c7
2 changed files with 14 additions and 1 deletions

View file

@ -33,7 +33,7 @@ const ANILIST_MEDIA_FIELDS = `
const ANILIST_SEARCH_QUERY = `query ($q: String) {
Page(perPage: 8) {
media(search: $q, type: MANGA) {
media(search: $q, type: MANGA, format_not_in: [NOVEL]) {
${ANILIST_MEDIA_FIELDS}
}
}