Check if a specific AniList ID is ignored
The AniList ID to check
True if the ID is ignored, false otherwise
export function isAniListIdIgnored(anilistId: number): boolean { try { const ignored = getIgnoredDuplicates(); return ignored.some((item) => item.anilistId === anilistId); } catch (error) { console.error("Error checking if AniList ID is ignored", error); return false; }} Copy
export function isAniListIdIgnored(anilistId: number): boolean { try { const ignored = getIgnoredDuplicates(); return ignored.some((item) => item.anilistId === anilistId); } catch (error) { console.error("Error checking if AniList ID is ignored", error); return false; }}
Check if a specific AniList ID is ignored