mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-20 12:34:23 -04:00
Merge pull request #1279 from micahflee/1277_download_attachment
Set content-disposition to attachment for /download
This commit is contained in:
commit
3b99716392
1 changed files with 3 additions and 3 deletions
|
@ -200,10 +200,10 @@ class ShareModeWeb(SendBaseModeWeb):
|
||||||
r.headers.set("Content-Encoding", "gzip")
|
r.headers.set("Content-Encoding", "gzip")
|
||||||
r.headers.set("Content-Length", self.filesize)
|
r.headers.set("Content-Length", self.filesize)
|
||||||
filename_dict = {
|
filename_dict = {
|
||||||
'filename': unidecode(basename),
|
"filename": unidecode(basename),
|
||||||
'filename*': "UTF-8''%s" % url_quote(basename)
|
"filename*": "UTF-8''%s" % url_quote(basename),
|
||||||
}
|
}
|
||||||
r.headers.set("Content-Disposition", "inline", **filename_dict)
|
r.headers.set("Content-Disposition", "attachment", **filename_dict)
|
||||||
r = self.web.add_security_headers(r)
|
r = self.web.add_security_headers(r)
|
||||||
# guess content type
|
# guess content type
|
||||||
(content_type, _) = mimetypes.guess_type(basename, strict=False)
|
(content_type, _) = mimetypes.guess_type(basename, strict=False)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue