diff options
Diffstat (limited to 'storage.go')
-rw-r--r-- | storage.go | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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) } |