Add missing slash
This commit is contained in:
parent
a57664b07c
commit
9a7c9bfc6e
2
main.go
2
main.go
|
@ -167,7 +167,7 @@ func saveHandler(w http.ResponseWriter, r *http.Request) {
|
|||
case "html":
|
||||
w.Header().Set("Content-Type", "text/html")
|
||||
io.WriteString(w, "<p><b>URL</b>: <a href='"+b.URL+"'>"+b.URL+"</a></p>")
|
||||
io.WriteString(w, "<p><b>Delete Key</b>: <a href='"+ADDRESS+"/del/"+b.ID+b.DELKEY+"'>"+b.DELKEY+"</a></p>")
|
||||
io.WriteString(w, "<p><b>Delete Key</b>: <a href='"+ADDRESS+"/del/"+b.ID+"/"+b.DELKEY+"'>"+b.DELKEY+"</a></p>")
|
||||
|
||||
default:
|
||||
io.WriteString(w, b.URL+"\n")
|
||||
|
|
Loading…
Reference in New Issue