*Remove unneeded dash

This commit is contained in:
Derrick Hammer 2022-09-21 16:11:02 -04:00
parent 36a59ce5e6
commit e1092fb7d8
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ export class PluginApiManager {
const paths = []; const paths = [];
for (const modulePath of [`${moduleName}.js`, `${moduleName}.mjs`]) { 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)) { if (fs.existsSync(fullPath)) {
paths.push(fullPath); paths.push(fullPath);
break; break;