mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
HDHR support fixed
This commit is contained in:
parent
710b3bdba0
commit
045509a017
2 changed files with 2 additions and 2 deletions
|
|
@ -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),
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue