From 3eea8ee98ec838686cb371390e5508f5a5e94b4f Mon Sep 17 00:00:00 2001 From: Gauthier Date: Thu, 12 Feb 2026 09:16:56 +0100 Subject: [PATCH] fix(watchlist): remove error log when a media from the watchlist is blacklisted (#2407) --- server/lib/watchlistsync.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/lib/watchlistsync.ts b/server/lib/watchlistsync.ts index aeb04809..d53ff1dc 100644 --- a/server/lib/watchlistsync.ts +++ b/server/lib/watchlistsync.ts @@ -3,6 +3,7 @@ import { MediaStatus, MediaType } from '@server/constants/media'; import { getRepository } from '@server/datasource'; import Media from '@server/entity/Media'; import { + BlacklistedMediaError, DuplicateMediaRequestError, MediaRequest, NoSeasonsAvailableError, @@ -144,6 +145,9 @@ class WatchlistSync { errorMessage: e.message, }); break; + // Blacklisted media should be silently ignored during watchlist sync to avoid spam + case BlacklistedMediaError: + break; default: logger.error('Failed to create media request from watchlist', { label: 'Watchlist Sync',