forked from snxraven/LinkUp-P2P-Chat
Hmm will it work this way?
This commit is contained in:
parent
a9f50e892b
commit
a3fbe7434a
5
app.js
5
app.js
@ -95,13 +95,16 @@ async function initialize() {
|
||||
});
|
||||
}
|
||||
|
||||
const configExists = fs.existsSync("./config.json");
|
||||
if (configExists) {
|
||||
readConfigFromFile();
|
||||
config.rooms.forEach(room => {
|
||||
addRoomToList(room);
|
||||
});
|
||||
}
|
||||
|
||||
const registerDiv = document.querySelector('#register');
|
||||
if (registerDiv && config.userName !== '') {
|
||||
if (registerDiv && !configExists) {
|
||||
registerDiv.classList.remove('hidden');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user