Add fix for spaces in content-disposition

pull/387/head
Omar Roth 6 years ago
parent 7e6cf7b979
commit 955b36913f

@ -4051,7 +4051,7 @@ get "/videoplayback" do |env|
env.response.status_code = response.status_code env.response.status_code = response.status_code
if title = env.params.query["title"]? if title = env.params.query["title"]?
env.response.headers["Content-Disposition"] = "attachment; filename=#{title}" env.response.headers["Content-Disposition"] = "attachment; filename=\"#{title}\""
end end
response.headers.each do |key, value| response.headers.each do |key, value|

Loading…
Cancel
Save