From b1c6e2fdbde49859a661767e9b414555aa7abc31 Mon Sep 17 00:00:00 2001 From: 0xsysr3ll <31414959+0xSysR3ll@users.noreply.github.com> Date: Thu, 14 Aug 2025 23:29:53 +0200 Subject: [PATCH] fix(api): update Plex Watchlist URL (#4220) --- server/api/plextv.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/api/plextv.ts b/server/api/plextv.ts index 2fc4523a8..ef2cee428 100644 --- a/server/api/plextv.ts +++ b/server/api/plextv.ts @@ -291,7 +291,7 @@ class PlexTvAPI extends ExternalAPI { headers: { 'If-None-Match': cachedWatchlist?.etag, }, - baseURL: 'https://metadata.provider.plex.tv', + baseURL: 'https://discover.provider.plex.tv', validateStatus: (status) => status < 400, // Allow HTTP 304 to return without error } ); @@ -315,7 +315,7 @@ class PlexTvAPI extends ExternalAPI { const detailedResponse = await this.getRolling( `/library/metadata/${watchlistItem.ratingKey}`, { - baseURL: 'https://metadata.provider.plex.tv', + baseURL: 'https://discover.provider.plex.tv', } );