fix books with uppercase extension

This commit is contained in:
Ruben Herold 2017-08-10 12:29:08 +02:00 committed by GitHub
parent fe52de6b4b
commit 68e3867af3
1 changed files with 1 additions and 1 deletions

View File

@ -2933,7 +2933,7 @@ def upload():
author_dir = helper.get_valid_filename(author, False)
data_name = title_dir
filepath = config.config_calibre_dir + os.sep + author_dir + os.sep + title_dir
saved_filename = filepath + os.sep + data_name + meta.extension
saved_filename = filepath + os.sep + data_name + meta.extension.lower()
if not os.path.exists(filepath):
try: