This commit is contained in:
Kovid Goyal 2007-07-18 23:01:01 +00:00
parent 69dd91b515
commit 93639f2f19

View File

@ -747,7 +747,7 @@ class DeviceBooksModel(QAbstractTableModel):
for book in self._orig_data: for book in self._orig_data:
match = True match = True
for q in queries: for q in queries:
if q in book.title.lower() or q in book.author.lower(): continue if q in book.title.lower() or q in book.authors.lower(): continue
else: else:
match = False match = False
break break