mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix ignored collections in Kobo Driver
Had inconsistently mangled the case of the collections. Removed the lower() as it the case should be considered.
This commit is contained in:
parent
770fd08aae
commit
8219b03f00
@ -3063,7 +3063,7 @@ class KOBOTOUCH(KOBO):
|
|||||||
# Cache the collection from the options string.
|
# Cache the collection from the options string.
|
||||||
if not hasattr(self.opts, '_ignore_collections_names'):
|
if not hasattr(self.opts, '_ignore_collections_names'):
|
||||||
icn = self.get_pref('ignore_collections_names')
|
icn = self.get_pref('ignore_collections_names')
|
||||||
self.opts._ignore_collections_names = [x.lower().strip() for x in icn.split(',')] if icn else []
|
self.opts._ignore_collections_names = [x.strip() for x in icn.split(',')] if icn else []
|
||||||
return self.opts._ignore_collections_names
|
return self.opts._ignore_collections_names
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
Loading…
x
Reference in New Issue
Block a user