From 20f275a86f59fe1b43a4bc1a49a86f815d3ca319 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Fri, 8 Jan 2016 21:56:21 +1300 Subject: Handle websocket connection idle timeout --- web/app/controller/Root.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'web') diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index ff76268b3..23ca94972 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -84,10 +84,14 @@ Ext.define('Traccar.controller.Root', { }, asyncUpdate: function (first) { - var protocol, socket; + var protocol, socket, self = this; protocol = location.protocol === 'https:' ? 'wss:' : 'ws:'; socket = new WebSocket(protocol + window.location.host + '/api/socket'); + socket.onclose = function (event) { + self.asyncUpdate(false); + }; + socket.onmessage = function (event) { var i, store, data, array, entity; -- cgit v1.2.3