fixing small logic issue

This commit is contained in:
Loren Brindze 2018-04-18 09:48:21 -07:00
parent 8d22572a41
commit ac90e987b8

View File

@ -176,7 +176,7 @@ func main() {
// will attempt to retrieve the index file of that directory.
func handleListing(show bool, serve http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
if show || strings.HasSuffix(r.URL.Path, "/") {
if !show && strings.HasSuffix(r.URL.Path, "/") {
http.NotFound(w, r)
return
}