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:
David 2017-05-12 00:36:04 +10:00
parent 770fd08aae
commit 8219b03f00

View File

@ -3063,7 +3063,7 @@ class KOBOTOUCH(KOBO):
# Cache the collection from the options string.
if not hasattr(self.opts, '_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
@property