From 045509a017f3fa08a1afab31e8366b52ff4e4a23 Mon Sep 17 00:00:00 2001 From: Dispatcharr Date: Sun, 2 Mar 2025 15:07:57 -0600 Subject: [PATCH] HDHR support fixed --- apps/hdhr/api_views.py | 2 +- apps/hdhr/views.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/hdhr/api_views.py b/apps/hdhr/api_views.py index a1ec835d..dbc0d02d 100644 --- a/apps/hdhr/api_views.py +++ b/apps/hdhr/api_views.py @@ -76,7 +76,7 @@ class LineupAPIView(APIView): responses={200: openapi.Response("Channel Lineup JSON")} ) def get(self, request): - channels = Channel.objects.filter(is_active=True).order_by('channel_number') + channels = Channel.objects.all().order_by('channel_number') lineup = [ { "GuideNumber": str(ch.channel_number), diff --git a/apps/hdhr/views.py b/apps/hdhr/views.py index a1ec835d..dbc0d02d 100644 --- a/apps/hdhr/views.py +++ b/apps/hdhr/views.py @@ -76,7 +76,7 @@ class LineupAPIView(APIView): responses={200: openapi.Response("Channel Lineup JSON")} ) def get(self, request): - channels = Channel.objects.filter(is_active=True).order_by('channel_number') + channels = Channel.objects.all().order_by('channel_number') lineup = [ { "GuideNumber": str(ch.channel_number),