Fix SVG mime type (image/svg+xml)

In PR #298, I was using image/svg for the MIME type for SVG image.
This is in fact image/svg+xml. Sorry for that.
This commit is contained in:
Vincent Bernat 2022-07-22 21:26:18 +02:00
parent c0856327b3
commit db82c79f20

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:")