Fixed rooms not being deleted from the json file #4
8
app.js
8
app.js
@ -278,14 +278,15 @@ function leaveRoom() {
|
|||||||
if (roomItem) {
|
if (roomItem) {
|
||||||
roomItem.remove();
|
roomItem.remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
config.rooms = config.rooms.filter(e => e !== currentRoom.topic);
|
||||||
|
writeConfigToFile("./config.json");
|
||||||
|
|
||||||
currentRoom.destroy();
|
currentRoom.destroy();
|
||||||
currentRoom = null;
|
currentRoom = null;
|
||||||
}
|
}
|
||||||
document.querySelector('#chat').classList.add('hidden');
|
document.querySelector('#chat').classList.add('hidden');
|
||||||
document.querySelector('#setup').classList.remove('hidden');
|
document.querySelector('#setup').classList.remove('hidden');
|
||||||
|
|
||||||
config.rooms = config.rooms.filter(e => e !== currentRoom.topic);
|
|
||||||
writeConfigToFile("./config.json");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function sendMessage(e) {
|
function sendMessage(e) {
|
||||||
@ -438,7 +439,6 @@ function toggleSetupView() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function writeConfigToFile(filePath) {
|
function writeConfigToFile(filePath) {
|
||||||
console.debug(config)
|
|
||||||
fs.writeFile(filePath, JSON.stringify(config), (err) => {
|
fs.writeFile(filePath, JSON.stringify(config), (err) => {
|
||||||
if (err) return console.error(err);
|
if (err) return console.error(err);
|
||||||
console.log("File has been created");
|
console.log("File has been created");
|
||||||
|
Loading…
Reference in New Issue
Block a user