Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Fixing matchmaker directing users to HTTP when the signalling server …
Browse files Browse the repository at this point in the history
…is using HTTPS. (#245)

Fixes #207
  • Loading branch information
mcottontensor authored Jun 6, 2023
1 parent 9add4d6 commit 556d501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SignallingWebServer/cirrus.js
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ if (config.UseMatchmaker) {
message = {
type: 'connect',
address: typeof serverPublicIp === 'undefined' ? '127.0.0.1' : serverPublicIp,
port: httpPort,
port: config.UseHTTPS ? httpsPort : httpPort,
ready: streamers.size > 0,
playerConnected: playerConnected
};
Expand Down

0 comments on commit 556d501

Please sign in to comment.