Set pack format content type (#269)

This commit is contained in:
Geometrically 2021-12-14 21:07:43 -07:00 committed by GitHub
parent 6752457ad8
commit 9e9d6e45b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
}
}