Skip to content

Commit

Permalink
rename hdhomerun lineup endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
shamoon committed Nov 4, 2022
1 parent 3ae0963 commit 4f1214a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/widgets/hdhomerun/component.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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")} />;
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/hdhomerun/widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const widget = {
proxyHandler: genericProxyHandler,

mappings: {
"lineup.json": {
"lineup": {
endpoint: "lineup.json",
}
},
Expand Down

0 comments on commit 4f1214a

Please sign in to comment.