diff --git a/homeassistant/components/media_player/sonos.py b/homeassistant/components/media_player/sonos.py index 351c0ed4c72..82bfc9c7b5a 100644 --- a/homeassistant/components/media_player/sonos.py +++ b/homeassistant/components/media_player/sonos.py @@ -655,6 +655,8 @@ class SonosDevice(MediaPlayerDevice): def _format_media_image_url(self, url, fallback_uri): if url in ('', 'NOT_IMPLEMENTED', None): + if fallback_uri in ('', 'NOT_IMPLEMENTED', None): + return None return 'http://{host}:{port}/getaa?s=1&u={uri}'.format( host=self._player.ip_address, port=1400,