return what playlist is playing

This commit is contained in:
Jon Maddox 2015-10-06 23:12:30 -04:00
parent 4be33bb15b
commit e84ddb036f

View file

@ -304,6 +304,11 @@ class ItunesDevice(MediaPlayerDevice):
""" Album of current playing media. (Music track only) """
return self.current_album
@property
def media_playlist(self):
""" Title of the currently playing playlist. """
return self.current_playlist
@property
def supported_media_commands(self):
""" Flags of media commands that are supported. """