mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 22:14:07 +02:00
Fix #2842 (Collections out of order on PRS-505 when batch uploading)
This commit is contained in:
parent
656c55debf
commit
d7c94246d7
1 changed files with 2 additions and 1 deletions
|
|
@ -728,7 +728,8 @@ def sync_to_device(self, on_card, delete_from_library,
|
|||
specific_format=specific_format,
|
||||
exclude_auto=do_auto_convert)
|
||||
if do_auto_convert:
|
||||
ids = list(set(ids).difference(_auto_ids))
|
||||
ok_ids = list(set(ids).difference(_auto_ids))
|
||||
ids = [i for i in ids if i in ok_ids]
|
||||
else:
|
||||
_auto_ids = []
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue