From e1092fb7d8e14a9f3b8a7979dcfc380a111b18a4 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 21 Sep 2022 16:11:02 -0400 Subject: [PATCH] *Remove unneeded dash --- src/modules/plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/plugin.ts b/src/modules/plugin.ts index 28fe151..a11c90f 100644 --- a/src/modules/plugin.ts +++ b/src/modules/plugin.ts @@ -40,7 +40,7 @@ export class PluginApiManager { const paths = []; for (const modulePath of [`${moduleName}.js`, `${moduleName}.mjs`]) { - const fullPath = path.join(config.get("plugin-dir"), modulePath); + const fullPath = path.join(config.get("plugindir"), modulePath); if (fs.existsSync(fullPath)) { paths.push(fullPath); break;