Skip to content

Commit

Permalink
fix: use flok.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
felixroos committed Dec 30, 2024
1 parent 196c5a5 commit b28b957
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,11 @@ const handleEvalStrudel = (msg) => {
// evaluate hydra code here...
};

const { hostname, port, protocol } = window.location;
const { port, protocol } = window.location;
const isSecure = protocol === "https:";
console.log("isSecure", isSecure);
const session = new Session("default", {
// changed this part to what flok.cc uses
hostname,
hostname: "flok.cc",
port: parseInt(port),
isSecure,
});
Expand Down

0 comments on commit b28b957

Please sign in to comment.