Pass directory name to filters in LstatIfPossible in the same way as Readdir

This commit is contained in:
Evan Anderson 2020-03-19 10:51:17 -07:00 committed by Bjørn Erik Pedersen
parent 52c159c452
commit cc2a5d52a4
1 changed files with 2 additions and 1 deletions

View File

@ -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