diff --git a/__init__.py b/__init__.py index 1183258..84bd1ce 100644 --- a/__init__.py +++ b/__init__.py @@ -212,7 +212,8 @@ def handle_play_request(self, station: BaseStation = None): def is_https_supported(self) -> bool: """Check if any available audioservice backend supports https.""" for service in self.audioservice.available_backends().values(): - if 'https' in service['supported_uris']: + if ('https' in service['supported_uris'] and + service['remote'] is False): return True return False