remove unused param

This commit is contained in:
bel
2020-03-12 00:57:25 +00:00
parent 7c70ba27cb
commit f8b5eb71e0
2 changed files with 7 additions and 10 deletions

View File

@@ -96,7 +96,7 @@ func (s *Server) phpProxy(w http.ResponseWriter, r *http.Request) {
s.static(w, r)
return
}
url, err := url.Parse(config.MyTinyTodo)
url, err := url.Parse("http://127.0.0.1:64123")
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
} else {