Skip to content

Commit

Permalink
chore: fix playlist list function within util
Browse files Browse the repository at this point in the history
...that is actually unused but was copied here from the beetstream project and may be synchronized between the projects subsequentially
  • Loading branch information
mgoltzsche committed Mar 20, 2024
1 parent bd1ab66 commit 78a733e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beetsplug/webm3u/playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def _load_playlists(self):
def playlists(self):
self._refresh()
playlists = self._playlists
ids = [k for k, v in playlists if v]
ids = [k for k, v in playlists.items() if v]
ids.sort()
return [playlists[id] for id in ids]

Expand Down

0 comments on commit 78a733e

Please sign in to comment.