mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 01:25:47 +01:00
commit
36e63c094e
2 changed files with 4 additions and 1 deletions
|
|
@ -1408,7 +1408,8 @@ def group_albums(session):
|
|||
if task.skip:
|
||||
continue
|
||||
tasks = []
|
||||
for _, items in itertools.groupby(task.items, group):
|
||||
sorted_items = sorted(task.items, key=group)
|
||||
for _, items in itertools.groupby(sorted_items, group):
|
||||
items = list(items)
|
||||
task = ImportTask(task.toppath, [i.path for i in items],
|
||||
items)
|
||||
|
|
|
|||
|
|
@ -77,6 +77,8 @@ Fixes:
|
|||
on the user's path by default).
|
||||
* Fix an incompatibility with certain JPEG files. Here's a relevant `Python
|
||||
bug`_. Thanks to :user:`nathdwek`. :bug:`1545`
|
||||
* Fix the 'Group albums' feature so it can handle when files aren't already
|
||||
in order by album. :bug:`1550`
|
||||
|
||||
.. _Python bug: http://bugs.python.org/issue16512
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue