Checks if a manga should be ignored for automatic matching. Checks against automatic matching blacklist (case-insensitive).
The manga to check
True if manga is in the automatic matching blacklist
export function shouldIgnoreForAutomaticMatching(manga: AniListManga): boolean { return isBlacklistedManga(manga);} Copy
export function shouldIgnoreForAutomaticMatching(manga: AniListManga): boolean { return isBlacklistedManga(manga);}
Checks if a manga should be ignored for automatic matching. Checks against automatic matching blacklist (case-insensitive).