Add connection error message

fixes #3
This commit is contained in:
David Cormier 2013-10-02 19:55:30 -04:00
commit ab490074d3
2 changed files with 6 additions and 0 deletions

View file

@ -330,6 +330,9 @@ weechat.factory('connection', ['$rootScope', '$log', 'handlers', 'colors', funct
}
websocket.onerror = function (evt) {
if (evt.type == "error" && websocket.readyState == 0) {
$rootScope.errorMessage = true;
}
$log.error("Relay error " + evt.data);
}