mirror of
https://github.com/minoplhy/chibisafe-netproxy.git
synced 2024-11-22 03:27:08 +00:00
fix: memory runtime nil
This commit is contained in:
parent
b52d99c45f
commit
fa8788bd29
5
main.go
5
main.go
@ -54,16 +54,17 @@ func uploadHandler(w http.ResponseWriter, r *http.Request) {
|
||||
// The argument to FormFile must match the name attribute
|
||||
// of the file input on the frontend
|
||||
file, fileHeader, err := r.FormFile("file")
|
||||
if err != nil {
|
||||
if err.Error() == "http: request body too large" {
|
||||
http.Error(w, handler.ErrorResponseBuild(http.StatusRequestEntityTooLarge, "Request Body is too large!"), http.StatusRequestEntityTooLarge)
|
||||
handler.ErrorLogBuilder([]string{r.RemoteAddr}, "Request Body is too large!")
|
||||
return
|
||||
}
|
||||
if err != nil {
|
||||
} else {
|
||||
http.Error(w, handler.ErrorResponseBuild(http.StatusInternalServerError, "Something went wrong!"), http.StatusInternalServerError)
|
||||
handler.ErrorLogBuilder([]string{r.RemoteAddr}, err.Error())
|
||||
return
|
||||
}
|
||||
}
|
||||
defer file.Close()
|
||||
|
||||
handler.InfoLogBuilder([]string{r.RemoteAddr}, "Received a successful POST")
|
||||
|
Loading…
Reference in New Issue
Block a user