From 6c7d5f258fc754e6623a9a0b56d4420c068f6931 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zg=C3=BCr=20Kesim?= Date: Fri, 14 Jun 2019 11:02:34 +0200 Subject: [PATCH] Revert "add image/svg+xml as Content-Type for svg" This reverts commit 549ed6a93bca529e7371a00404ff58e4328e6edb. maste was already ahead with this. --- main.go | 1 - 1 file changed, 1 deletion(-) diff --git a/main.go b/main.go index 796fae4..c3afed3 100644 --- a/main.go +++ b/main.go @@ -47,7 +47,6 @@ func (t Tool) execute(in io.Reader, w http.ResponseWriter) { cmd.Stdout = buf if e := cmd.Run(); e == nil { - w.Header().Set("Content-Type", "image/svg+xml") io.Copy(w, buf) } else { log.Printf("%s returned error\n", t.Name)