For for error unrar binary not found
This commit is contained in:
parent
93f65484de
commit
9a8a1f75ca
2 changed files with 5 additions and 4 deletions
|
@ -683,9 +683,10 @@ def _configuration_update_helper():
|
||||||
reboot_required |= reboot
|
reboot_required |= reboot
|
||||||
# Rarfile Content configuration
|
# Rarfile Content configuration
|
||||||
_config_string(to_save, "config_rarfile_location")
|
_config_string(to_save, "config_rarfile_location")
|
||||||
unrar_status = helper.check_unrar(config.config_rarfile_location)
|
if "config_rarfile_location" in to_save:
|
||||||
if unrar_status:
|
unrar_status = helper.check_unrar(config.config_rarfile_location)
|
||||||
return _configuration_result(unrar_status, gdriveError)
|
if unrar_status:
|
||||||
|
return _configuration_result(unrar_status, gdriveError)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
metadata_db = os.path.join(config.config_calibre_dir, "metadata.db")
|
metadata_db = os.path.join(config.config_calibre_dir, "metadata.db")
|
||||||
|
|
|
@ -778,7 +778,7 @@ def get_download_link(book_id, book_format, client):
|
||||||
book_format = book_format.split(".")[0]
|
book_format = book_format.split(".")[0]
|
||||||
book = calibre_db.get_filtered_book(book_id)
|
book = calibre_db.get_filtered_book(book_id)
|
||||||
if book:
|
if book:
|
||||||
data1 = data = calibre_db.get_book_format(book.id, book_format.upper())
|
data1 = calibre_db.get_book_format(book.id, book_format.upper())
|
||||||
else:
|
else:
|
||||||
abort(404)
|
abort(404)
|
||||||
if data1:
|
if data1:
|
||||||
|
|
Loading…
Reference in a new issue