Browse Source

Set the content-length header for sendfile. Fixes #447

pull/609/head
Armin Ronacher 12 years ago
parent
commit
3bec75d230
  1. 1
      CHANGES
  2. 1
      flask/helpers.py

1
CHANGES

@ -13,6 +13,7 @@ Release date to be decided.
:ref:`upgrading-to-010` for more information.
- Added ``template_test`` methods in addition to the already existing
``template_filter`` method family.
- Set the content-length header for x-sendfile.
Version 0.9
-----------

1
flask/helpers.py

@ -541,6 +541,7 @@ def send_file(filename_or_fp, mimetype=None, as_attachment=False,
if file is not None:
file.close()
headers['X-Sendfile'] = filename
headers['Content-Length'] = os.path.getsize(filename)
data = None
else:
if file is None:

Loading…
Cancel
Save