Loading opds_catalog/__pycache__/feeds.cpython-35.pyc +20 B (40.1 KiB) File changed.No diff preview for this file type. View original file View changed file opds_catalog/__pycache__/urls.cpython-35.pyc +5 B (2.88 KiB) File changed.No diff preview for this file type. View original file View changed file opds_catalog/feeds.py +2 −4 Original line number Diff line number Diff line Loading @@ -639,11 +639,9 @@ class SearchSeriesFeed(AuthFeed): elif searchtype == 'a': try: self.author_id = int(searchterms) books = Book.objects.filter(authors=self.author_id) except: books = None series = Series.objects.filter(book__in=books) self.author_id = None series = Series.objects.filter(book__authors=self.author_id).distinct() return {"series":series, "searchterms":searchterms, "searchtype":searchtype, "page":page} Loading Loading
opds_catalog/__pycache__/feeds.cpython-35.pyc +20 B (40.1 KiB) File changed.No diff preview for this file type. View original file View changed file
opds_catalog/__pycache__/urls.cpython-35.pyc +5 B (2.88 KiB) File changed.No diff preview for this file type. View original file View changed file
opds_catalog/feeds.py +2 −4 Original line number Diff line number Diff line Loading @@ -639,11 +639,9 @@ class SearchSeriesFeed(AuthFeed): elif searchtype == 'a': try: self.author_id = int(searchterms) books = Book.objects.filter(authors=self.author_id) except: books = None series = Series.objects.filter(book__in=books) self.author_id = None series = Series.objects.filter(book__authors=self.author_id).distinct() return {"series":series, "searchterms":searchterms, "searchtype":searchtype, "page":page} Loading