From 32eaffaddd1ff396225c006a3610bae9aa3d29f4 Mon Sep 17 00:00:00 2001 From: Nirvana Date: Thu, 25 Dec 2025 22:43:32 +0100 Subject: [PATCH] Restructure for enabling/disabling --- 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 2aa284c..9dcf05c 100644 --- a/lib/streaming_providers/base/provider_registry.py +++ b/lib/streaming_providers/base/provider_registry.py @@ -46,7 +46,7 @@ class ProviderMetadata: # Rest of the method remains the same... self.label = self.plugin_class.get_static_label(self.country) self.supported_auth_types = self.plugin_class.get_static_auth_types() - self.logo = self.plugin_class.get_static_logo(self.country) + self.logo = self.plugin_class.get_static_logo(country=self.country) self.supported_countries = self.plugin_class.get_static_supported_countries() self.requires_credentials = any( auth_type in ['user_credentials', 'client_credentials']