Skip to content

Commit

Permalink
80/443 default port connecting issues fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed Jan 6, 2016
1 parent 999e8b1 commit 46ad598
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title": "Cache WEB Terminal",
"description": "Web-based terminal emulator for Caché administering.",
"author": "ZitRo",
"version": "3.2.1",
"version": "3.2.2",
"releaseNumber": 19,
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion webSource/js/TerminalController.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var TerminalController = function (TERMINAL) {
*/
this.server = new CacheWebTerminalServer(
this, (location.protocol === "https:" ? "wss:" : "ws:"), location.hostname,
""/*build.replace:location.port*/ || "57776"
""/*build.replace:location.port*/ || (location.protocol === "https:" ? "443" : "80")
);

/**
Expand Down

0 comments on commit 46ad598

Please sign in to comment.