Fixes +6094. Not able to connect to vfs over http

pull/3/head
Ruben Daniels 2015-02-11 20:41:27 +00:00
rodzic 1c11468fe0
commit 2e6bb1c394
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -223,7 +223,8 @@ define(function(require, exports, module) {
eioOptions = {
path: parsedSocket.path,
host: parsedSocket.host,
port: parsedSocket.port || "443",
port: parsedSocket.port
|| parsedSocket.protocol == "https:" ? "443" : null,
secure: parsedSocket.protocol
? parsedSocket.protocol == "https:" : true
};