diff options
Diffstat (limited to 'storage.go')
-rw-r--r-- | storage.go | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,10 +1,9 @@ - package main import ( + "io/ioutil" "log" "net/http" - "io/ioutil" "path/filepath" ) @@ -12,7 +11,7 @@ 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) + path, err := filepath.Abs(path) if err != nil { log.Print(err) http.Error(w, http.StatusText(400), 400) |