From 67de056a7c9cf686ba5f5c83f3877c36727c5a58 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Sun, 5 Jan 2025 14:51:55 +0100 Subject: [PATCH] fix: fix bug with SVR.JS configuration not loading --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 1d71818..c7c2296 100644 --- a/index.js +++ b/index.js @@ -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 }