mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
fix artist field in BPD file browser
This commit is contained in:
parent
0822fa2f82
commit
945e253c2f
1 changed files with 1 additions and 1 deletions
|
|
@ -823,7 +823,7 @@ class Server(BaseServer):
|
|||
yield u'directory: ' + seq_to_path((artist,), PATH_PH)
|
||||
elif album is None: # List all albums for an artist.
|
||||
for album in self.lib.albums(artist):
|
||||
parts = (album.artist, album.album)
|
||||
parts = (album.albumartist, album.album)
|
||||
yield u'directory: ' + seq_to_path(parts, PATH_PH)
|
||||
elif track is None: # List all tracks on an album.
|
||||
for item in self.lib.items(artist, album):
|
||||
|
|
|
|||
Loading…
Reference in a new issue