mirror of https://github.com/pallets/flask.git
Set the content-length header for sendfile. Fixes #447
This commit is contained in:
parent
de5038f2fb
commit
3bec75d230
1
CHANGES
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
|
||||
-----------
|
||||
|
|
|
@ -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…
Reference in New Issue