Skip to content

Commit

Permalink
Fix HTTPS not working with panel
Browse files Browse the repository at this point in the history
  • Loading branch information
ktwrd committed May 18, 2022
1 parent 6805248 commit 4480818
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BuildService/Properties/VersionAutoIncrement.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

using System.Reflection;

[assembly: AssemblyVersionAttribute("1.0.69.411")]
[assembly: AssemblyVersionAttribute("1.0.69.427")]

2 changes: 1 addition & 1 deletion BuildService/websocket.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
buttonConnect = document.querySelector("button[action=connect]"),
output = document.querySelector("#output"),
textarea = document.querySelector("textarea"),
wsUri = `ws://$CREDENTIAL_INJECT@${window.location.host}/socket/`,
wsUri = `ws${window.location.protocol.replace('http', '')}//$CREDENTIAL_INJECT@${window.location.host}/socket/`,
websocket = null;
// button.addEventListener("click", onClickButton);
buttonConnect.addEventListener("click", onClickButtonConnect);
Expand Down

0 comments on commit 4480818

Please sign in to comment.