Remove plain/text header

This commit is contained in:
Eliot Whalan 2016-06-23 18:59:05 +10:00
parent 828646e236
commit 8f1a9a04e8
No known key found for this signature in database
GPG Key ID: C0A42175139840D6
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)
}