From 86d7642dcad160354ca4f464876c013369cc5c6d Mon Sep 17 00:00:00 2001 From: lostb1t Date: Sun, 16 Nov 2025 14:22:05 +0100 Subject: [PATCH] fix: show tech details when avaiable (#1213) --- components/ItemContent.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/ItemContent.tsx b/components/ItemContent.tsx index 4c537e96..197ee34f 100644 --- a/components/ItemContent.tsx +++ b/components/ItemContent.tsx @@ -32,6 +32,7 @@ import { useSettings } from "@/utils/atoms/settings"; import { getLogoImageUrlById } from "@/utils/jellyfin/image/getLogoImageUrlById"; import { AddToFavorites } from "./AddToFavorites"; import { ItemHeader } from "./ItemHeader"; +import { ItemTechnicalDetails } from "./ItemTechnicalDetails"; import { MoreMoviesWithActor } from "./MoreMoviesWithActor"; import { PlayInRemoteSessionButton } from "./PlayInRemoteSession"; @@ -231,6 +232,12 @@ export const ItemContent: React.FC = React.memo( /> )} + {!isOffline && + selectedOptions.mediaSource?.MediaStreams && + selectedOptions.mediaSource.MediaStreams.length > 0 && ( + + )} + {item.Type !== "Program" && (