HDHR support fixed

This commit is contained in:
Dispatcharr 2025-03-02 15:07:57 -06:00
parent 710b3bdba0
commit 045509a017
2 changed files with 2 additions and 2 deletions

View file

@ -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),

View file

@ -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),