Match suffix for content type more precisely

Suffix needs a dot and should match the end of string.
This commit is contained in:
Nobuyoshi Nakada 2019-07-29 22:54:58 +09:00
Родитель bef398eb87
Коммит 3ee63cfe88
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -102,9 +102,9 @@ class RDoc::Servlet < WEBrick::HTTPServlet::AbstractServlet
res.body = File.read asset_path
res.content_type = case req.path
when /css$/ then 'text/css'
when /js$/ then 'application/javascript'
else 'application/octet-stream'
when /\.css\z/ then 'text/css'
when /\.js\z/ then 'application/javascript'
else 'application/octet-stream'
end
end