Remove plain/text header

This commit is contained in:
Eliot Whalan 2016-06-23 18:59:05 +10:00
parent b6973eddb0
commit 97b99b06df
1 changed files with 0 additions and 1 deletions

View File

@ -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)
}