mirror of
https://github.com/beetbox/beets.git
synced 2026-01-09 01:15:38 +01:00
fix adding tracks in BPD
This commit is contained in:
parent
30577b0461
commit
bb8ebd24b0
2 changed files with 2 additions and 1 deletions
1
NEWS
1
NEWS
|
|
@ -1,5 +1,6 @@
|
|||
1.0b8
|
||||
-----
|
||||
* Fix adding individual tracks in BPD.
|
||||
|
||||
1.0b7
|
||||
-----
|
||||
|
|
|
|||
|
|
@ -886,7 +886,7 @@ class Server(BaseServer):
|
|||
# Single item.
|
||||
albums = list(self.lib.albums(*components[:2]))
|
||||
if albums:
|
||||
for item in albums.items():
|
||||
for item in albums[0].items():
|
||||
if item.title == components[2]:
|
||||
items.append(item)
|
||||
break
|
||||
|
|
|
|||
Loading…
Reference in a new issue