Fix unknown attribute in MPD (#120657)

This commit is contained in:
Joost Lekkerkerker 2024-06-27 19:41:21 +02:00 committed by Franck Nijhof
parent a8d6866f9f
commit 03d198dd64
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3

View File

@ -421,11 +421,6 @@ class MpdDevice(MediaPlayerEntity):
"""Name of the current input source."""
return self._current_playlist
@property
def source_list(self):
"""Return the list of available input sources."""
return self._playlists
async def async_select_source(self, source: str) -> None:
"""Choose a different available playlist and play it."""
await self.async_play_media(MediaType.PLAYLIST, source)