1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-11-24 18:47:23 +00:00

Merge remote-tracking branch 'cover_path/patch-1'

This commit is contained in:
OzzieIsaacs 2020-08-09 14:54:36 +02:00
commit b9a802a19c

View File

@ -833,8 +833,8 @@ def upload():
# move cover to final directory, including book id
if has_cover:
try:
new_coverpath = os.path.join(config.config_calibre_dir, db_book.path, "cover.jpg")
try:
copyfile(meta.cover, new_coverpath)
os.unlink(meta.cover)
except OSError as e: