Fix opds search and opds list of read books

This commit is contained in:
Ozzieisaacs
2021-11-07 20:18:33 +04:00
parent 60aa016734
commit add502d236
2 changed files with 3 additions and 3 deletions

View File

@@ -780,7 +780,7 @@ class CalibreDB():
# read search results from calibre-database and return it (function is used for feed and simple search
def get_search_results(self, term, offset=None, order=None, limit=None, *join):
order = order[0] or [Books.sort]
order = order[0] if order else [Books.sort]
pagination = None
result = self.search_query(term, *join).order_by(*order).all()
result_count = len(result)