Skip to content
Snippets Groups Projects
Unverified Commit 02e90024 authored by Greg Dowling's avatar Greg Dowling Committed by GitHub
Browse files

Set media type correctly in the roon integration- so the media card correctly...

Set media type correctly in the roon integration- so the media card correctly displays the artist. (#139871)

Set media type correctly - so media card display works properly.
parent d4f205c3
No related branches found
No related tags found
No related merge requests found
...@@ -329,6 +329,11 @@ class RoonDevice(MediaPlayerEntity): ...@@ -329,6 +329,11 @@ class RoonDevice(MediaPlayerEntity):
"""Album artist of current playing media (Music track only).""" """Album artist of current playing media (Music track only)."""
return self.media_artist return self.media_artist
@property
def media_content_type(self) -> str:
"""Return the media type."""
return MediaType.MUSIC
@property @property
def supports_standby(self): def supports_standby(self):
"""Return power state of source controls.""" """Return power state of source controls."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment