Complete Trailing Slashes Fix

This commit is contained in:
Quentin 2021-08-20 17:38:25 +02:00
parent 1cc0de75a6
commit be17ee5a40
1 changed files with 4 additions and 4 deletions

View File

@ -335,7 +335,7 @@ func (gf *GarageFile) readDirRoot(count int) ([]fs.FileInfo, error) {
func (gf *GarageFile) readDirChild(count int) ([]fs.FileInfo, error) {
prefix := gf.path.key
if prefix[len(prefix)-1:] != "/" {
if len(prefix) > 0 && prefix[len(prefix)-1:] != "/" {
prefix = prefix + "/"
}