From 511f22dd7ab31e5da8741264dbf19a9fe8b05b63 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Tue, 8 Mar 2016 10:02:42 +1300 Subject: Fix issue in WebSocket url construction --- web/app/controller/Root.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'web/app/controller') diff --git a/web/app/controller/Root.js b/web/app/controller/Root.js index 23ca94972..a1026d3c5 100644 --- a/web/app/controller/Root.js +++ b/web/app/controller/Root.js @@ -86,7 +86,7 @@ Ext.define('Traccar.controller.Root', { asyncUpdate: function (first) { var protocol, socket, self = this; protocol = location.protocol === 'https:' ? 'wss:' : 'ws:'; - socket = new WebSocket(protocol + window.location.host + '/api/socket'); + socket = new WebSocket(protocol + '//' + window.location.host + '/api/socket'); socket.onclose = function (event) { self.asyncUpdate(false); -- cgit v1.2.3