aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'public/scripts')
-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')