diff options
author | Marvin Borner | 2019-03-05 14:53:48 +0100 |
---|---|---|
committer | Marvin Borner | 2019-03-05 14:53:48 +0100 |
commit | a1a64b36ceba7fafd950760ecdfbfead539991f9 (patch) | |
tree | 48f24e157f88213a3ca6383f23a42ddc4367960a /public | |
parent | e7cf873d01e746e2706353fb89d139b6c52876a6 (diff) |
Fixed logout if not connected
Diffstat (limited to 'public')
-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') |