From 45573b9ca1692e3478222739aaf503b2c07c4397 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Fri, 11 Apr 2025 16:38:56 -0500 Subject: [PATCH] Added tuners to api_views --- apps/hdhr/api_views.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/hdhr/api_views.py b/apps/hdhr/api_views.py index 5d706ef8..fe1d4ff9 100644 --- a/apps/hdhr/api_views.py +++ b/apps/hdhr/api_views.py @@ -56,6 +56,7 @@ class DiscoverAPIView(APIView): "DeviceAuth": "test_auth_token", "BaseURL": base_url, "LineupURL": f"{base_url}/lineup.json", + "TunerCount": "10", } else: data = { @@ -67,6 +68,7 @@ class DiscoverAPIView(APIView): "DeviceAuth": "test_auth_token", "BaseURL": base_url, "LineupURL": f"{base_url}/lineup.json", + "TunerCount": "10", } return JsonResponse(data)