From: Evan Anderson Date: Thu, 19 Mar 2020 17:51:17 +0000 (-0700) Subject: Pass directory name to filters in LstatIfPossible in the same way as Readdir X-Git-Tag: v0.68.0~12 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=cc2a5d52a4ad188d93aeb2d51d5c19c7661e098d;p=brevno-suite%2Fhugo Pass directory name to filters in LstatIfPossible in the same way as Readdir --- diff --git a/hugofs/filter_fs.go b/hugofs/filter_fs.go index ca9c3336..15373c2e 100644 --- a/hugofs/filter_fs.go +++ b/hugofs/filter_fs.go @@ -153,7 +153,8 @@ func (fs *FilterFs) LstatIfPossible(name string) (os.FileInfo, bool, error) { return decorateFileInfo(fi, fs, fs.getOpener(name), "", "", nil), false, nil } - fs.applyFilters(name, -1, fi) + parent := filepath.Dir(name) + fs.applyFilters(parent, -1, fi) return fi, b, nil