This commit is contained in:
Yannick Ulrich 2023-02-21 20:11:38 +00:00
parent bfb21ea6a9
commit 68f6d20719
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ func (blefs *FS) ReadDir(path string) ([]MyDirEntry, error) {
listing := MyFileInfo{}
listing.modtime = f.ModTime()
listing.size = uint32(f.Size())
listing.name = path + "/" + f.Name()
listing.name = f.Name()
listing.dir = f.IsDir()
out = append(out, MyDirEntry{self : listing})
}