Merge pull request #316 from vincentbernat/fix/svg-mime-type

Fix SVG mime type (image/svg+xml)
This commit is contained in:
Yusuke Inuzuka 2022-07-30 05:12:45 +09:00 committed by GitHub
commit d77f38c53d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -819,7 +819,7 @@ var bPng = []byte("png;")
var bGif = []byte("gif;")
var bJpeg = []byte("jpeg;")
var bWebp = []byte("webp;")
var bSvg = []byte("svg;")
var bSvg = []byte("svg+xml;")
var bJs = []byte("javascript:")
var bVb = []byte("vbscript:")
var bFile = []byte("file:")