From adf06f96bf346037fefbca1161ed36cdfba22d07 Mon Sep 17 00:00:00 2001 From: dekzter Date: Tue, 25 Mar 2025 12:03:23 -0400 Subject: [PATCH] Fixed hdhr 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 b5377fa0..509bea8b 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}/hdhr/`; +const hdhrUrl = `${window.location.protocol}//${window.location.host}/hdhr`; const ChannelsTable = ({}) => { const [channel, setChannel] = useState(null); @@ -444,7 +444,7 @@ const ChannelsTable = ({}) => { }; const copyHDHRUrl = () => { handleCopy( - `${window.location.protocol}//${window.location.host}/hdhr/`, + `${window.location.protocol}//${window.location.host}/hdhr`, hdhrUrlRef ); };