diff --git a/app.js b/app.js index 1b62e10..28aa808 100644 --- a/app.js +++ b/app.js @@ -431,13 +431,9 @@ 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("1:", data); + if(err) return console.log("Error while reading config.json! ", err) data = JSON.parse(data); - console.log("2:", data); - config.userName = data.userName; - config.userAvatar = data.userAvatar; - config.rooms = data.rooms; + config = data; }); }