From 9733fca24278a3fc4bf1fc6c1ce9e247d3e85c1d Mon Sep 17 00:00:00 2001 From: Dispatcharr Date: Sat, 22 Mar 2025 08:32:06 -0500 Subject: [PATCH] Fixed HDHR copy url --- frontend/src/components/tables/ChannelsTable.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/tables/ChannelsTable.jsx b/frontend/src/components/tables/ChannelsTable.jsx index eef3bfb5..6b6b9f1c 100644 --- a/frontend/src/components/tables/ChannelsTable.jsx +++ b/frontend/src/components/tables/ChannelsTable.jsx @@ -175,7 +175,7 @@ const ChannelStreams = ({ channel, isExpanded }) => { const m3uUrl = `${window.location.protocol}//${window.location.host}/output/m3u`; const epgUrl = `${window.location.protocol}//${window.location.host}/output/epg`; -const hdhrUrl = `${window.location.protocol}//${window.location.host}/output/hdhr`; +const hdhrUrl = `${window.location.protocol}//${window.location.host}/hdhr/`; const ChannelsTable = ({}) => { const [channel, setChannel] = useState(null); @@ -441,7 +441,7 @@ const ChannelsTable = ({}) => { }; const copyHDHRUrl = () => { handleCopy( - `${window.location.protocol}//${window.location.host}/output/hdhr`, + `${window.location.protocol}//${window.location.host}/hdhr/`, hdhrUrlRef ); };