From b29959b0637fd8add9598d2a3d05f9a0972b65df Mon Sep 17 00:00:00 2001 From: 0xsysr3ll <31414959+0xSysR3ll@users.noreply.github.com> Date: Fri, 14 Feb 2025 15:28:26 +0100 Subject: [PATCH] fix: missing plex.tv url in images remotePatterns (#1356) This fixes a 400 error while fetching user's avatar from plex api during user import. --- next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.js b/next.config.js index 7bb577307..597cba323 100644 --- a/next.config.js +++ b/next.config.js @@ -11,6 +11,7 @@ module.exports = { { hostname: 'gravatar.com' }, { hostname: 'image.tmdb.org' }, { hostname: 'artworks.thetvdb.com' }, + { hostname: 'plex.tv' }, ], }, webpack(config) {