fix adding tracks in BPD

This commit is contained in:
Adrian Sampson 2011-04-09 10:44:56 -07:00
parent 30577b0461
commit bb8ebd24b0
2 changed files with 2 additions and 1 deletions

1
NEWS
View file

@ -1,5 +1,6 @@
1.0b8
-----
* Fix adding individual tracks in BPD.
1.0b7
-----

View file

@ -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