1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-24 17:07:00 +02:00

simplify the svg extension check

This commit is contained in:
Gani Georgiev 2022-07-21 12:58:06 +03:00
parent 5d8fc939e2
commit 4c2cd5a534

View File

@ -199,9 +199,8 @@ func (s *System) Serve(response http.ResponseWriter, fileKey string, name string
// make an exception for svg and use a custom content type
// to send in the response so that it can be loaded in a img tag
// (see https://github.com/whatwg/mimesniff/issues/7)
ext := filepath.Ext(name)
extContentType := realContentType
if ext == ".svg" {
if filepath.Ext(name) == ".svg" {
extContentType = "image/svg+xml"
}