Bugfix search in books list

Fix renaming upper to lowercase letters
Update test results
This commit is contained in:
Ozzie Isaacs
2021-11-21 13:23:27 +01:00
parent 1b8bd27b3c
commit cbb9edac19
3 changed files with 2425 additions and 300 deletions

View File

@@ -831,7 +831,7 @@ def list_books():
books = calibre_db.session.query(db.Books).filter(calibre_db.common_filters()).all()
entries = calibre_db.get_checkbox_sorted(books, state, off, limit, order)
elif search:
entries, filtered_count, __ = calibre_db.get_search_results(search, off, order, limit, *join)
entries, filtered_count, __ = calibre_db.get_search_results(search, off, [order,''], limit, *join)
else:
entries, __, __ = calibre_db.fill_indexpage((int(off) / (int(limit)) + 1), limit, db.Books, True, order, *join)