mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 08:23:10 +02:00
Fix problem where collections are not built if the user spells the db fields using uppercase letters.
This commit is contained in:
parent
18ea000dc6
commit
0c3d4511f8
1 changed files with 1 additions and 1 deletions
|
|
@ -145,7 +145,7 @@ def sync_booklists(self, booklists, end_session=True):
|
|||
blists[i] = booklists[i]
|
||||
opts = self.settings()
|
||||
if opts.extra_customization:
|
||||
collections = [x.strip() for x in
|
||||
collections = [x.lower().strip() for x in
|
||||
opts.extra_customization.split(',')]
|
||||
else:
|
||||
collections = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue