Update book_manager.py to fix #286 (#287)

Implement the fix mentioned in
https://github.com/calibrain/calibre-web-automated-book-downloader/issues/286

Note however that I have 0% success with downloads with 0.2.2 even with
this change.
This commit is contained in:
John Cocula
2025-10-02 19:26:29 -04:00
committed by GitHub
parent 98e3a2f114
commit 1c24312eb0
+1 -1
View File
@@ -241,7 +241,7 @@ def _parse_book_info_page(soup: BeautifulSoup, book_id: str) -> BookInfo:
book_info = BookInfo(
id=book_id,
preview=preview,
title=divs[7].next.strip(),
title=divs[7].text.strip(),
publisher=divs[11].text.strip(),
author=divs[9].text.strip(),
format=format,