From 0da65f79071bb65940d30bfd798950b238f0cae7 Mon Sep 17 00:00:00 2001 From: Nicola Benaglia Date: Thu, 29 May 2025 20:32:25 +0200 Subject: [PATCH] Set null src --- src/components/Embeds/VideoPlayer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Embeds/VideoPlayer.tsx b/src/components/Embeds/VideoPlayer.tsx index ab9d3a6..c5ea94d 100644 --- a/src/components/Embeds/VideoPlayer.tsx +++ b/src/components/Embeds/VideoPlayer.tsx @@ -127,7 +127,7 @@ export const VideoPlayer: FC = ({ if (name && identifier && service) { return `${node || getBaseApiReact()}/arbitrary/${service}/${name}/${identifier}`; } - return ''; + return null; }, [service, name, identifier]); useEffect(() => {