use all followed playlists instead of user playlists

This commit is contained in:
aj 2019-08-07 22:25:25 +01:00
parent 7687e17f4f
commit ff6d2a9e25

View File

@ -15,10 +15,10 @@ class PlaylistEngine:
self.net = net
def load_user_playlists(self):
self.playlists = self.net.get_user_playlists()
self.playlists = self.net.get_playlists()
def append_user_playlists(self):
self.playlists += self.net.get_user_playlists()
self.playlists += self.net.get_playlists()
def get_playlist_tracks(self, playlist):
logger.info(f"pulling tracks for {playlist.name}")