From 46a42710e1b8a3bbbae7100d19e9fa62b959d2ce Mon Sep 17 00:00:00 2001 From: CrispyPin Date: Tue, 26 Mar 2024 19:55:20 +0100 Subject: [PATCH] add missing .mov content type --- src/http.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/http.rs b/src/http.rs index 5a92559..025ba7b 100644 --- a/src/http.rs +++ b/src/http.rs @@ -163,6 +163,7 @@ impl Content { "3gp" => "video/3gpp", "3gp2" => "video/3gpp2", "avi" => "video/x-msvideo", + "mov" => "video/mov", "mp4" => "video/mp4", "mpeg" => "video/mpeg", "ogv" => "video/ogv",