1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00

return octet stream for unmatched extensions, instead of nil

This commit is contained in:
Thomas Reynolds 2011-09-20 09:58:53 -07:00
parent a630b97201
commit 91e00e5289

View file

@ -99,7 +99,9 @@ module Middleman::Base
# Return static files
if !::Tilt.mappings.has_key?(template_engine.to_s)
content_type mime_type(File.extname(request_path)), :charset => 'utf-8'
matched_mime = mime_type(File.extname(request_path))
matched_mime = "application/octet-stream" if matched_mime.nil?
content_type matched_mime, :charset => 'utf-8'
status 200
send_file File.join(settings.views, request_path)
false