From ef9dcad2ebf72c785a3993dec7f811d7bdaa3750 Mon Sep 17 00:00:00 2001 From: Felix Cusson <60357894+Darkfull-Dante@users.noreply.github.com> Date: Wed, 3 Nov 2021 07:29:05 -0400 Subject: [PATCH] changed spotify integration check --- custom_components/spotcast/__init__.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/custom_components/spotcast/__init__.py b/custom_components/spotcast/__init__.py index a55786e1..135c6ca4 100644 --- a/custom_components/spotcast/__init__.py +++ b/custom_components/spotcast/__init__.py @@ -42,12 +42,11 @@ def setup(hass, config): - + # get spotify core integration status if not helpers.get_spotify_install_status(hass): - _LOGGER.error("Spotify integration was not found, aborting setup...") - return False - + _LOGGER.error("Spotify integration was not found, please verify integration is functionnal. Could result in python error...") + """Setup the Spotcast service.""" conf = config[DOMAIN]