Working on Config system (Saving & Loading user data) #3

Merged
snxraven merged 16 commits from MiTask/LinkUp-P2P-Chat:main into main 2024-06-09 03:11:48 -04:00
Showing only changes of commit 8ca1cc2b8f - Show all commits

2
app.js
View File

@ -97,7 +97,7 @@ async function initialize() {
const configExists = fs.existsSync("./config.json");
if (configExists) {
readConfigFromFile();
readConfigFromFile("./config.json");
config.rooms.forEach(room => {
addRoomToList(room);
});