feat(app): improved errors and warning for disabled features

This commit is contained in:
lowlighter
2022-08-28 12:32:57 -04:00
parent 77dfb2ae7e
commit 7a53a2da55
45 changed files with 58 additions and 47 deletions

View File

@@ -59,7 +59,7 @@ export default async function({login, q}, {conf, data, rest, graphql, plugins, q
//Plugins
for (const name of Object.keys(imports.plugins)) {
if ((!plugins[name]?.enabled) || (!q[name]))
if (!q[name])
continue
pending.push((async () => {
try {