fix: fix bug with SVR.JS configuration not loading

This commit is contained in:
Dorian Niemiec 2025-01-05 14:51:55 +01:00
parent fc1c21f2e3
commit 67de056a7c

View file

@ -10,7 +10,7 @@ var isPrepared = false;
var configJSON = {};
try {
configJSON = JSON.parse(fs.readFileSync(__dirname + "/../../config.json"));
configJSON = JSON.parse(fs.readFileSync(__dirname + "/../../../config.json"));
} catch (err) {
// Ignore the error
}