aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts/chat.js
diff options
context:
space:
mode:
authorMarvin Borner2019-02-11 19:15:38 +0100
committerMarvin Borner2019-02-11 19:15:38 +0100
commit316d1ad38405bd421c4d8c4d66264584d464832f (patch)
tree64818ccbe3f275d1e26e1fed34f67c94d26c2685 /public/scripts/chat.js
parent569d320d2f596f58f201ab0d6a1e4ff456e99dfe (diff)
Updated error handling
Diffstat (limited to 'public/scripts/chat.js')
-rw-r--r--public/scripts/chat.js6
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;