From 4a881ed721258e05b33996a7bd95148ec6a5df78 Mon Sep 17 00:00:00 2001 From: MrMasrozYTLIVE <61359286+MrMasrozYTLIVE@users.noreply.github.com> Date: Sun, 9 Jun 2024 09:57:11 +0300 Subject: [PATCH] Its actually not the reason... --- app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app.js b/app.js index 2370063..58063d1 100644 --- a/app.js +++ b/app.js @@ -432,6 +432,7 @@ function writeConfigToFile(filePath) { async function readConfigFromFile(filePath) { await fs.readFile(filePath, 'utf8', (err, data) => { if(err) return console.log("Error while reading config.json! ", err); + console.log(data) config = JSON.parse(data); }); }