mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-23 02:35:26 +01:00
Bug #1909442: saved searches don't work in the device view
This commit is contained in:
parent
94d68db7af
commit
d61540d065
1 changed files with 3 additions and 2 deletions
|
|
@ -1221,7 +1221,8 @@ class OnDeviceSearch(SearchQueryParser): # {{{
|
|||
'formats',
|
||||
'title',
|
||||
'inlibrary',
|
||||
'tags'
|
||||
'tags',
|
||||
'search'
|
||||
]
|
||||
|
||||
def __init__(self, model):
|
||||
|
|
@ -1252,7 +1253,7 @@ def get_matches(self, location, query):
|
|||
if location not in self.USABLE_LOCATIONS:
|
||||
return set()
|
||||
matches = set()
|
||||
all_locs = set(self.USABLE_LOCATIONS) - {'all', 'tags'}
|
||||
all_locs = set(self.USABLE_LOCATIONS) - {'all', 'tags', 'search'}
|
||||
locations = all_locs if location == 'all' else [location]
|
||||
q = {
|
||||
'title' : lambda x : getattr(x, 'title').lower(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue