summaryrefslogtreecommitdiff
path: root/storage.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage.go')
-rw-r--r--storage.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/storage.go b/storage.go
index e063d6b..dd6feb2 100644
--- a/storage.go
+++ b/storage.go
@@ -9,7 +9,6 @@ import (
func ServeStorage(w http.ResponseWriter, r *http.Request, path string) {
- // generate absolute, cleaned path of ressource
path = filepath.Join(config.Http.Storage, path)
path, err := filepath.Abs(path)
if err != nil {
@@ -20,7 +19,6 @@ func ServeStorage(w http.ResponseWriter, r *http.Request, path string) {
// TODO check if path is still in storage folder
- // serve the file if nothing has been wrong
http.ServeFile(w, r, path)
}