mirror of
https://github.com/beetbox/beets.git
synced 2025-12-26 18:43:38 +01:00
Merge remote branch 'upstream/master'
This commit is contained in:
commit
2dd4c0a970
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