aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index d508957..0665c09 100644
--- a/main.go
+++ b/main.go
@@ -76,6 +76,7 @@ func (t *Tool) execute(in io.Reader, w http.ResponseWriter) {
if e := cmd.Run(); e == nil {
if t.ContentType != "" {
w.Header().Add("Content-Type", t.ContentType)
+ w.Header().Set("Content-Transfer-Encoding", "base64")
io.Copy(base64.NewEncoder(base64.StdEncoding, w), buf)
} else {
w.Header().Add("Content-Type", "image/svg+xml")