mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 12:45:28 +02:00
Fix media_content_id attribute in Spotify integration (#37853)
Previously, the media_content_id field would contain the track name, which
appears was a regression when the Spotify integration was rewritten in
7e4b9adc
. The media_content_id now reverts to containing the Spotify
track 'uri' field, which has the form 'spotify:track:...'
This commit is contained in:
@@ -167,7 +167,7 @@ class SpotifyMediaPlayer(MediaPlayerEntity):
|
||||
def media_content_id(self) -> Optional[str]:
|
||||
"""Return the media URL."""
|
||||
item = self._currently_playing.get("item") or {}
|
||||
return item.get("name")
|
||||
return item.get("uri")
|
||||
|
||||
@property
|
||||
def media_content_type(self) -> Optional[str]:
|
||||
|
Reference in New Issue
Block a user