diff options
Diffstat (limited to 'public/scripts/chat.js')
-rw-r--r-- | public/scripts/chat.js | 2 |
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') |