From a80c5d40e0e944d40dfdfe8e902ee10872e26bc0 Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Mon, 13 Oct 2025 23:52:52 +0200 Subject: [PATCH] fix(plex): tv show links not working (#4272) --- packages/integrations/src/plex/plex-integration.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/integrations/src/plex/plex-integration.ts b/packages/integrations/src/plex/plex-integration.ts index 3bb6a404f..982a617eb 100644 --- a/packages/integrations/src/plex/plex-integration.ts +++ b/packages/integrations/src/plex/plex-integration.ts @@ -142,7 +142,10 @@ export class PlexIntegration extends Integration implements IMediaServerIntegrat rating: item.rating?.toFixed(1), tags: item.Genre?.map((genre) => genre.tag) ?? [], href: super - .url(`/web/index.html#!/server/${machineIdentifier}/details?key=${encodeURIComponent(item.key)}`) + .url( + // Url with children on the end results in infinite loading screen, see https://github.com/homarr-labs/homarr/issues/4078 + `/web/index.html#!/server/${machineIdentifier}/details?key=${encodeURIComponent(item.key.replace("/children", ""))}`, + ) .toString(), length: item.duration ? Math.round(item.duration / 1000) : undefined, };