Show socketio error messages
This commit is contained in:
parent
e6ab6de3e5
commit
897338bfa7
2 changed files with 12 additions and 0 deletions
|
@ -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({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue