mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
SONY driver: Handle mistaken upper casing of filed names when user specifies what fields to build colelctions from
This commit is contained in:
parent
44be78af3d
commit
d44154243e
@ -145,7 +145,7 @@ class PRS505(USBMS):
|
|||||||
blists[i] = booklists[i]
|
blists[i] = booklists[i]
|
||||||
opts = self.settings()
|
opts = self.settings()
|
||||||
if opts.extra_customization:
|
if opts.extra_customization:
|
||||||
collections = [x.strip() for x in
|
collections = [x.lower().strip() for x in
|
||||||
opts.extra_customization.split(',')]
|
opts.extra_customization.split(',')]
|
||||||
else:
|
else:
|
||||||
collections = []
|
collections = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user