fix the List.lua

This commit is contained in:
2025-08-10 16:26:21 +03:00
parent e594d519a7
commit 20a1e3e7bb

View File

@@ -52,6 +52,6 @@ end
local basePath = "com" local basePath = "com"
local layer = params.layer and params.layer:gsub(">", "/") or nil local layer = params.layer and params.layer:gsub(">", "/") or nil
session.response.result = { session.response.send({
answer = layer and scanDirectory(basePath, layer) or scanDirectory(basePath, "") answer = layer and scanDirectory(basePath, layer) or scanDirectory(basePath, "")
} })