1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-10-13 14:47:40 +00:00

Merge branch 'master' into Develop

This commit is contained in:
Ozzieisaacs
2020-03-29 16:48:56 +02:00
45 changed files with 1375 additions and 5658 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)