Fixed hdhr url

This commit is contained in:
dekzter 2025-03-25 12:03:23 -04:00
parent d6f9b41b3e
commit adf06f96bf

View file

@ -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
);
};