From 939c21c3d99f768932f55ff9dcaa1791ab5a464e Mon Sep 17 00:00:00 2001 From: Frank Gonnello Date: Sun, 21 Dec 2025 19:26:54 -0500 Subject: [PATCH] fix: correct permission check in watchlist sync The watchlist sync permission check incorrectly uses AUTO_APPROVE_TV instead of AUTO_REQUEST_TV, causing users with only AUTO_REQUEST_TV permission to be skipped during watchlist synchronization. Fixes #4309 --- server/lib/watchlistsync.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/lib/watchlistsync.ts b/server/lib/watchlistsync.ts index 0fd90f64da..136bb117b0 100644 --- a/server/lib/watchlistsync.ts +++ b/server/lib/watchlistsync.ts @@ -44,7 +44,7 @@ class WatchlistSync { [ Permission.AUTO_REQUEST, Permission.AUTO_REQUEST_MOVIE, - Permission.AUTO_APPROVE_TV, + Permission.AUTO_REQUEST_TV, ], { type: 'or' } )