fix bug, download on root

Former-commit-id: 72e65e85fb
This commit is contained in:
Henrique Dias 2016-12-29 19:44:08 +00:00
parent d80a02c225
commit 66241b81c2

View File

@ -77,7 +77,12 @@ func Download(w http.ResponseWriter, r *http.Request, c *config.Config, i *file.
return http.StatusInternalServerError, err return http.StatusInternalServerError, err
} }
w.Header().Set("Content-Disposition", "attachment; filename="+i.Name()+extension) name := i.Name()
if name == "" {
name = "download"
}
w.Header().Set("Content-Disposition", "attachment; filename="+name+extension)
io.Copy(w, file) io.Copy(w, file)
return http.StatusOK, nil return http.StatusOK, nil
} }