1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-10-30 14:53:01 +00:00

Added option to convert AZW3 to mobi for sending to kindle

This commit is contained in:
Ozzieisaacs
2019-12-15 18:44:02 +01:00
parent eabc6e23be
commit 7098d08888
2 changed files with 11 additions and 7 deletions

View File

@@ -729,7 +729,7 @@ def convert_bookformat(book_id):
if (book_format_from is None) or (book_format_to is None):
flash(_(u"Source or destination format for conversion missing"), category="error")
return redirect(request.environ["HTTP_REFERER"])
return redirect(url_for('editbook.edit_book', book_id=book_id))
log.info('converting: book id: %s from: %s to: %s', book_id, book_format_from, book_format_to)
rtn = helper.convert_book_format(book_id, config.config_calibre_dir, book_format_from.upper(),
@@ -741,4 +741,4 @@ def convert_bookformat(book_id):
category="success")
else:
flash(_(u"There was an error converting this book: %(res)s", res=rtn), category="error")
return redirect(request.environ["HTTP_REFERER"])
return redirect(url_for('editbook.edit_book', book_id=book_id))