1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-10-17 16:47:39 +00:00

Update updater

Update change logfile
code cosmetics js files
This commit is contained in:
Ozzieisaacs
2020-03-29 16:22:11 +02:00
parent 6d907094d7
commit 4eacb21259
8 changed files with 153 additions and 104 deletions

View File

@@ -492,7 +492,7 @@ def get_book_cover_internal(book,
# saves book cover from url
def save_cover_from_url(url, book_path):
img = requests.get(url)
img = requests.get(url, timeout=10) # ToDo: Error Handling
return save_cover(img, book_path)