mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-08-11 09:13:57 -04:00
Kobo driver: Fix the ignore collections option being accidentally case-insensitive
Merge branch 'master' of https://github.com/davidfor/calibre
This commit is contained in:
commit
6012582c90
@ -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