diff --git a/main.go b/main.go index 142b1cf..4f554b6 100644 --- a/main.go +++ b/main.go @@ -238,7 +238,6 @@ func rawHandler(w http.ResponseWriter, r *http.Request) { vars := mux.Vars(r) paste := vars["pasteId"] s := getPaste(paste) - w.Header().Set("Content-Type", "plain/text") io.WriteString(w, s) }