From 0c9eacb024a82cc62139b0efe406f9c72e4a0a06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E6=AA=8E?= Date: Mon, 6 Mar 2017 16:35:00 +0800 Subject: [PATCH] fix opds --- cps/web.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cps/web.py b/cps/web.py index d5bc1882..d4992658 100755 --- a/cps/web.py +++ b/cps/web.py @@ -673,9 +673,9 @@ def get_opds_download_link(book_id, format): file_name = book.title if len(book.authors) > 0: file_name = book.authors[0].name + '-' + file_name - # file_name = helper.get_valid_filename(file_name) + file_name = helper.get_valid_filename(file_name) response = make_response(send_from_directory(os.path.join(config.config_calibre_dir, book.path), data.name + "." + format)) - response.headers["Content-Disposition"] = "attachment; filename=\"%s.%s\"" % (data.name, format) + response.headers["Content-Disposition"] = "attachment; filename=\"%s.%s\"" % (urllib.quote(file_name.encode('utf8')), format) return response