server(filesystem): Fix sort position of directories

Correct the sorting order so that directories are at the beginning as intended.
This commit is contained in:
Daniel Barton 2024-05-09 23:00:18 +08:00
parent 71c5338549
commit 2f8a14eaa0

View File

@ -480,9 +480,9 @@ func (fs *Filesystem) ListDirectory(p string) ([]Stat, error) {
case a.IsDir() && b.IsDir():
return 0
case a.IsDir():
return 1
default:
return -1
default:
return 1
}
})