We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d2215 commit 460be4cCopy full SHA for 460be4c
src/Library/ModuleManager/ModuleManager.ts
@@ -69,6 +69,12 @@ export class ModuleManager {
69
public async loadModules (config: ModuleManagerConfigInterface): Promise<this> {
70
debug('Loading modules');
71
72
+ if (!config) {
73
+ debug('No modules registered.');
74
+
75
+ return;
76
+ }
77
78
for(let i = 0; i < config.length; i++) {
79
await this.loadModule(config[i]);
80
}
0 commit comments