unexport and rework some more things

Former-commit-id: e1bee6d07e435ce17fd0fb9da0624d614918208b
This commit is contained in:
Henrique Dias
2017-06-25 14:48:34 +01:00
parent 99d99843b7
commit a72f25701a
5 changed files with 27 additions and 31 deletions

View File

@@ -14,7 +14,7 @@ func serveListing(w http.ResponseWriter, r *http.Request, c *FileManager, u *use
var err error
// Loads the content of the directory
listing, err := GetListing(u, i.VirtualPath, c.PrefixURL+r.URL.Path)
listing, err := getListing(u, i.VirtualPath, c.PrefixURL+r.URL.Path)
if err != nil {
return errorToHTTP(err, true), err
}