aboutsummaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorMarvin Borner2019-03-05 14:53:48 +0100
committerMarvin Borner2019-03-05 14:53:48 +0100
commita1a64b36ceba7fafd950760ecdfbfead539991f9 (patch)
tree48f24e157f88213a3ca6383f23a42ddc4367960a /public
parente7cf873d01e746e2706353fb89d139b6c52876a6 (diff)
Fixed logout if not connected
Diffstat (limited to 'public')
-rw-r--r--public/scripts/chat.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js
index 8214121..8b9bfd2 100644
--- a/public/scripts/chat.js
+++ b/public/scripts/chat.js
@@ -533,7 +533,7 @@ function chat() {
.on('click', () => addContact());
$('#logout')
.on('click', () => {
- connectedPeers[currentPeerIndex].close();
+ if (currentPeerIndex in connectedPeers) connectedPeers[currentPeerIndex].close();
location.reload(true);
});
$('#delete')