From 0b9628dfea81e4708f409ab87bc946c449f79c21 Mon Sep 17 00:00:00 2001 From: Flora Rosenkreuz Date: Fri, 13 Oct 2017 07:37:50 -0500 Subject: [PATCH] Add webm mime type to utils.cr (#413) --- src/kemal/helpers/utils.cr | 1 + 1 file changed, 1 insertion(+) diff --git a/src/kemal/helpers/utils.cr b/src/kemal/helpers/utils.cr index a107a5c..b0e0253 100644 --- a/src/kemal/helpers/utils.cr +++ b/src/kemal/helpers/utils.cr @@ -25,6 +25,7 @@ module Kemal when ".woff" then "application/font-woff" when ".woff2" then "font/woff2" when ".mp4" then "video/mp4" + when ".webm" then "video/webm" else "application/octet-stream" end end