fix listing empty dirs

This commit is contained in:
Izaya 2021-05-23 12:11:56 +10:00
parent 2867038094
commit 2d386f1276
1 changed files with 2 additions and 2 deletions

View File

@ -123,7 +123,7 @@ function filesystem.register(basePath, uuid)
end
function fs.list(path)
checkArg(1, path, "string")
return native.fs_list(realpath(path)) --TODO: Test, check if dirs get / at end
return native.fs_list(realpath(path)) or {} --TODO: Test, check if dirs get / at end
end
function fs.lastModified(path)
checkArg(1, path, "string")
@ -159,4 +159,4 @@ function filesystem.register(basePath, uuid)
return modules.component.api.register(uuid, "filesystem", fs)
end
return filesystem
return filesystem