diff --git a/homeassistant/components/spotify/media_player.py b/homeassistant/components/spotify/media_player.py index b63a9513818..a738952d2ca 100644 --- a/homeassistant/components/spotify/media_player.py +++ b/homeassistant/components/spotify/media_player.py @@ -95,6 +95,7 @@ def spotify_exception_handler(func): self._attr_available = False if exc.reason == "NO_ACTIVE_DEVICE": raise HomeAssistantError("No active playback device found") from None + raise HomeAssistantError(f"Spotify error: {exc.reason}") from exc return wrapper