Show socketio error messages

This commit is contained in:
Dane Everitt
2017-11-18 16:50:08 -06:00
parent e6ab6de3e5
commit 897338bfa7
2 changed files with 12 additions and 0 deletions

View File

@@ -57,6 +57,17 @@ var Server = (function () {
'query': 'token=' + Pterodactyl.server.daemonSecret,
});
Socket.on('error', function (err) {
if(typeof notifySocketError !== 'object') {
notifySocketError = $.notify({
message: 'There was an error attempting to establish a WebSocket connection to the Daemon. This panel will not work as expected.<br /><br />' + err,
}, {
type: 'danger',
delay: 0,
});
}
});
Socket.io.on('connect_error', function (err) {
if(typeof notifySocketError !== 'object') {
notifySocketError = $.notify({