From 4edb3b5682fe529ddcad50ae6bc8f951bfc2acfb Mon Sep 17 00:00:00 2001 From: Flik Date: Sat, 3 Jan 2026 16:19:49 +0800 Subject: [PATCH] fix: correct config function call in start method --- plugins/file-manager/plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/file-manager/plugin.js b/plugins/file-manager/plugin.js index 5cacac2..70cbb33 100644 --- a/plugins/file-manager/plugin.js +++ b/plugins/file-manager/plugin.js @@ -15,7 +15,7 @@ function metadata() { var rootPath = "."; function start() { - rootPath = config("root_path") || "."; + rootPath = config.get("root_path") || "."; log("File Manager started, root: " + rootPath); }