From 9e9d6e45b4f804208a42c167260df0be563e9601 Mon Sep 17 00:00:00 2001 From: Geometrically <18202329+Geometrically@users.noreply.github.com> Date: Tue, 14 Dec 2021 21:07:43 -0700 Subject: [PATCH] Set pack format content type (#269) --- src/util/ext.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/ext.rs b/src/util/ext.rs index 88718e1f2..ccc30b447 100644 --- a/src/util/ext.rs +++ b/src/util/ext.rs @@ -16,6 +16,7 @@ pub fn project_file_type(ext: &str) -> Option<&str> { match ext { "jar" => Some("application/java-archive"), "zip" => Some("application/zip"), + "mrpack" => Some("application/zip"), _ => None, } }