fix: correct config function call in start method
All checks were successful
Sign Plugins / sign (push) Successful in 30s

This commit is contained in:
2026-01-03 16:19:49 +08:00
parent 9059c2c0d6
commit 4edb3b5682

View File

@@ -15,7 +15,7 @@ function metadata() {
var rootPath = "."; var rootPath = ".";
function start() { function start() {
rootPath = config("root_path") || "."; rootPath = config.get("root_path") || ".";
log("File Manager started, root: " + rootPath); log("File Manager started, root: " + rootPath);
} }