From a1a64b36ceba7fafd950760ecdfbfead539991f9 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 5 Mar 2019 14:53:48 +0100 Subject: Fixed logout if not connected --- public/scripts/chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'public') 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') -- cgit v1.2.3