fix(api): update Plex Watchlist URL (#4220)

This commit is contained in:
0xsysr3ll
2025-08-14 23:29:53 +02:00
committed by GitHub
parent 325eecbad1
commit b1c6e2fdbd

View File

@@ -291,7 +291,7 @@ class PlexTvAPI extends ExternalAPI {
headers: { headers: {
'If-None-Match': cachedWatchlist?.etag, '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 validateStatus: (status) => status < 400, // Allow HTTP 304 to return without error
} }
); );
@@ -315,7 +315,7 @@ class PlexTvAPI extends ExternalAPI {
const detailedResponse = await this.getRolling<MetadataResponse>( const detailedResponse = await this.getRolling<MetadataResponse>(
`/library/metadata/${watchlistItem.ratingKey}`, `/library/metadata/${watchlistItem.ratingKey}`,
{ {
baseURL: 'https://metadata.provider.plex.tv', baseURL: 'https://discover.provider.plex.tv',
} }
); );