Skip to content

Commit

Permalink
fix: switch to recommended mime type for XML
Browse files Browse the repository at this point in the history
  • Loading branch information
joewiz committed Mar 1, 2024
1 parent f3ef022 commit 3892b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/s3-object.xqm
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ declare function s3-object:put(
case ".tif"
case ".tiff" return "image/tiff"
case ".txt" return "text/plain"
case ".xml" return "text/xml"
case ".xml" return "application/xml"
default return "binary/octet-stream"
let $request :=
aws-request:create("PUT", $href, $parameters)
Expand Down

0 comments on commit 3892b41

Please sign in to comment.