diff options
author | KatolaZ <katolaz@freaknet.org> | 2017-06-30 23:46:11 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2017-06-30 23:46:11 +0100 |
commit | 32e86d1129f200c776f879da835a6659427ca707 (patch) | |
tree | 49ae2a83a6eb8070efe298e22971a66429fe2ade /main.go | |
parent | ee3dc59322eb3a366f3594261491381db5084110 (diff) |
added 'show' option
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ func handle_put_paste(w http.ResponseWriter, r *http.Request) { // and then we return the URL: log.Printf(" `-- saving paste to : %s", paste_dir + paste_name) hostname := r.Host - if show := req_body.Get("show"); show != "" { + if show := req_body.Get("show"); show != "1" { fmt.Fprintf(w, "%s/%s", hostname, paste_name) return } else{ |