fix filemanager.go

This commit is contained in:
Henrique Dias 2016-06-25 22:08:55 +01:00
parent 4a19c6d5e3
commit de1596e13d

View File

@ -45,7 +45,7 @@ func (f FileManager) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, err
assets = httpserver.Path(r.URL.Path).Matches(c.BaseURL + a.BaseURL)
if r.Method != http.MethodPost && !assets {
fi, code, err = GetFileInfo(r.URL, c)
fi, code, err = file.GetInfo(r.URL, c)
if err != nil {
return code, err
}