fix multiple filemanager on one domain

This commit is contained in:
Henrique Dias 2017-01-22 09:59:56 +00:00
parent ee1536160e
commit ca54f9dfb1

View File

@ -41,7 +41,7 @@ func (f FileManager) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, err
for i := range f.Configs {
// Checks if this Path should be handled by File Manager.
if !httpserver.Path(r.URL.Path).Matches(f.Configs[i].BaseURL) {
return f.Next.ServeHTTP(w, r)
continue
}
c = &f.Configs[i]