1
Fork 0

Add error handling to gotConnected.

This commit is contained in:
Juliusz Chroboczek 2021-10-29 23:37:59 +02:00
parent 8c21ede9d2
commit 06ee4cc30f
1 changed files with 7 additions and 1 deletions

View File

@ -324,7 +324,13 @@ function setConnected(connected) {
function gotConnected() {
setConnected(true);
let up = getUserPass();
this.join(group, up.username, up.password);
try {
this.join(group, up.username, up.password);
} catch(e) {
console.error(e);
displayError(e);
serverConnection.close();
}
}
/**