Add error handling to gotConnected.

This commit is contained in:
Juliusz Chroboczek
2021-10-29 23:37:59 +02:00
parent 8c21ede9d2
commit 06ee4cc30f
+6
View File
@@ -324,7 +324,13 @@ function setConnected(connected) {
function gotConnected() {
setConnected(true);
let up = getUserPass();
try {
this.join(group, up.username, up.password);
} catch(e) {
console.error(e);
displayError(e);
serverConnection.close();
}
}
/**