Set the content-length header for sendfile. Fixes #447
This commit is contained in:
parent
de5038f2fb
commit
3bec75d230
2 changed files with 2 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue