diff options
author | Marvin Borner | 2019-02-11 19:15:38 +0100 |
---|---|---|
committer | Marvin Borner | 2019-02-11 19:15:38 +0100 |
commit | 316d1ad38405bd421c4d8c4d66264584d464832f (patch) | |
tree | 64818ccbe3f275d1e26e1fed34f67c94d26c2685 /public/scripts/chat.js | |
parent | 569d320d2f596f58f201ab0d6a1e4ff456e99dfe (diff) |
Updated error handling
Diffstat (limited to 'public/scripts/chat.js')
-rw-r--r-- | public/scripts/chat.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js index c875698..fa70606 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -94,7 +94,11 @@ function chat() { }); peer.on('error', err => { console.error(err); - swal('Connection lost!', '', 'error'); + if (err.type === 'network') swal('Connection to server lost!', '', 'error'); + else if (err.type === 'browser-incompatible') swal('Your server is not compatible!', 'Please update or use another browser!', 'error'); + else if (err.type === 'peer-unavailable') swal('Peer could not be found!', '', 'error'); + else if (err.type === 'unavailable-id') swal('Ou snap! Your ID isn\'t available!', '', 'error'); + else swal('Unhandled Error!', 'You just threw up this error: ' + err.type, 'error'); }); peer.on('connection', async conn => { connectedPeer = conn; |