Update upload.go

This commit is contained in:
ZizzyDizzyMC 2021-02-09 22:52:18 -05:00
parent 5effb947e3
commit d6ebc29483
1 changed files with 1 additions and 2 deletions

View File

@ -61,7 +61,7 @@ func uploadPostHandler(c web.C, w http.ResponseWriter, r *http.Request) {
uploadHeaderProcess(r, &upReq)
contentType := r.Header.Get("Content-Type")
srcIp := r.Header.get("X-Forwarded-For")
if strings.HasPrefix(contentType, "multipart/form-data") {
file, headers, err := r.FormFile("file")
if err != nil {
@ -92,7 +92,6 @@ func uploadPostHandler(c web.C, w http.ResponseWriter, r *http.Request) {
upReq.expiry = parseExpiry(r.PostFormValue("expires"))
upReq.accessKey = r.PostFormValue(accessKeyParamName)
upReq.srcIp := r.Header.get("X-Forwarded-For")
if r.PostFormValue("randomize") == "true" {
upReq.randomBarename = true
}