Use Response#content_type=
This commit is contained in:
parent
98199f96f8
commit
4397a3c7fd
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ end
|
|||
def send_file(env, path : String, mime_type : String? = nil)
|
||||
file_path = File.expand_path(path, Dir.current)
|
||||
mime_type = "application/octet-stream" unless mime_type
|
||||
env.response.headers.add "Content-Type", mime_type
|
||||
env.response.content_type = mime_type
|
||||
env.response.content_length = File.size(file_path)
|
||||
File.open(file_path) do |file|
|
||||
IO.copy(file, env.response)
|
||||
|
|
Loading…
Reference in a new issue