Make sure reqhandler is not null / undefined

This commit is contained in:
tgpethan 2020-06-15 13:34:43 +01:00
parent eab209a460
commit 208d124622
1 changed files with 4 additions and 0 deletions

View File

@ -104,6 +104,10 @@ fs.readFile('./misc/ascii.txt', function(err, data) {
} else {
// All required modules are found, start the framework's server.
global.modules.consoleHelper.printInfo(emoji.wave, "Starting Revolution...");
if (reqhandler == null) {
global.modules.consoleHelper.printError(emoji.cross, "No request handler was loaded, possibly due to an error.");
process.exit(1);
}
frameworkServer();
}
});