feat: Enhance search functionality in CalibreOPDSClient to support contextual search with start_href

This commit is contained in:
JB
2025-11-29 05:54:13 -08:00
parent 8a2bd7ec50
commit b0a3e1dbd9
2 changed files with 42 additions and 41 deletions
+1 -1
View File
@@ -122,7 +122,7 @@ def api_calibre_opds_feed() -> ResponseReturnValue:
if letter:
feed = client.browse_letter(letter, start_href=href)
elif query:
feed = client.search(query)
feed = client.search(query, start_href=href)
else:
feed = client.fetch_feed(href)
except CalibreOPDSError as exc: