From ffe8b10212d92fe6e431afee0d72afd6b9ef1007 Mon Sep 17 00:00:00 2001 From: Nirvana Date: Fri, 27 Feb 2026 21:31:39 +0100 Subject: [PATCH] Add discovery --- lib/streaming_providers/base/provider_registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/streaming_providers/base/provider_registry.py b/lib/streaming_providers/base/provider_registry.py index b832e16..8ea6139 100644 --- a/lib/streaming_providers/base/provider_registry.py +++ b/lib/streaming_providers/base/provider_registry.py @@ -36,7 +36,7 @@ class ProviderMetadata: # Check if provider has an explicit single country supported_countries = self.plugin_class.get_static_supported_countries() - if len(supported_countries) == 1: + if len(supported_countries) == 1 and supported_countries[0] != "*": # Provider has exactly one supported country (e.g., HRTi with ["HR"]) # Use that country instead of the passed-in country self.country = supported_countries[0].upper()