Этот коммит содержится в:
Andy Lo-A-Foe
2016-01-20 01:03:17 +01:00
родитель 6faabe34e8
Коммит b870c0117f

Просмотреть файл

@@ -1103,13 +1103,13 @@ export function getFileName(path) {
// Gets the websocket port to use. Configurable on the server. // Gets the websocket port to use. Configurable on the server.
export function getWebsocketPort(protocol) { export function getWebsocketPort(protocol) {
if ((/^wss:/).test(protocol)) { // wss:// if ((/^wss:/).test(protocol)) { // wss://
return ':' + global.window.mm_config.WebsocketSecurePort; return ':' + global.window.mm_config.WebsocketSecurePort;
} }
if ((/^ws:/).test(protocol)) { if ((/^ws:/).test(protocol)) {
return ':' + global.window.mm_config.WebsocketPort; return ':' + global.window.mm_config.WebsocketPort;
} }
return ''; return '';
} }
export function getSessionIndex() { export function getSessionIndex() {