rename hdhomerun lineup endpoint

This commit is contained in:
Michael Shamoon 2022-11-04 15:25:48 -07:00
parent b5d5b7c552
commit fe4a967a15
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ export default function Component({ service }) {
const { widget } = service;
const { data: channelsData, error: channelsError } = useWidgetAPI(widget, "lineup.json");
const { data: channelsData, error: channelsError } = useWidgetAPI(widget, "lineup");
if (channelsError) {
return <Container error={t("widget.api_error")} />;

View File

@ -5,7 +5,7 @@ const widget = {
proxyHandler: genericProxyHandler,
mappings: {
"lineup.json": {
"lineup": {
endpoint: "lineup.json",
}
},