Skip to content

Commit 46ad598

Browse files
80/443 default port connecting issues fix
1 parent 999e8b1 commit 46ad598

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "Cache WEB Terminal",
44
"description": "Web-based terminal emulator for Caché administering.",
55
"author": "ZitRo",
6-
"version": "3.2.1",
6+
"version": "3.2.2",
77
"releaseNumber": 19,
88
"repository": {
99
"type": "git",

webSource/js/TerminalController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var TerminalController = function (TERMINAL) {
2828
*/
2929
this.server = new CacheWebTerminalServer(
3030
this, (location.protocol === "https:" ? "wss:" : "ws:"), location.hostname,
31-
""/*build.replace:location.port*/ || "57776"
31+
""/*build.replace:location.port*/ || (location.protocol === "https:" ? "443" : "80")
3232
);
3333

3434
/**

0 commit comments

Comments
 (0)