From c8b5a81607c9c2799f46f42154ee311884723aa4 Mon Sep 17 00:00:00 2001 From: Jeremy Lin Date: Mon, 22 Nov 2021 13:59:09 -0800 Subject: fileserver: Fix handling of symlink sizes in directory listings (#4415) --- modules/caddyhttp/fileserver/browse.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'modules/caddyhttp/fileserver/browse.go') diff --git a/modules/caddyhttp/fileserver/browse.go b/modules/caddyhttp/fileserver/browse.go index bd4de3a..d076aec 100644 --- a/modules/caddyhttp/fileserver/browse.go +++ b/modules/caddyhttp/fileserver/browse.go @@ -141,12 +141,7 @@ func (fsrv *FileServer) loadDirectoryContents(dir *os.File, root, urlPath string // user can presumably browse "up" to parent folder if path is longer than "/" canGoUp := len(urlPath) > 1 - l, err := fsrv.directoryListing(files, canGoUp, root, urlPath, repl) - if err != nil { - return browseTemplateContext{}, err - } - - return l, nil + return fsrv.directoryListing(files, canGoUp, root, urlPath, repl), nil } // browseApplyQueryParams applies query parameters to the listing. -- cgit v1.2.3