diff --git a/Assets/HappyFunTimes/HappyFunTimesCore/Server/HFTCaptivePortalHandler.cs b/Assets/HappyFunTimes/HappyFunTimesCore/Server/HFTCaptivePortalHandler.cs index 282757c..a96cc7a 100644 --- a/Assets/HappyFunTimes/HappyFunTimesCore/Server/HFTCaptivePortalHandler.cs +++ b/Assets/HappyFunTimes/HappyFunTimesCore/Server/HFTCaptivePortalHandler.cs @@ -103,7 +103,8 @@ bool SendCaptivePortalHTML(HttpListenerRequest req, HttpListenerResponse res, st string str = System.Text.Encoding.UTF8.GetString(content); Dictionary subs = new Dictionary(); - subs["startUrl"] = GetBaseUrl(req) + m_firstPath + "?sessionId=" + sessionId; +/// subs["startUrl"] = GetBaseUrl(req) + m_firstPath + "?sessionId=" + sessionId; + subs["startUrl"] = m_firstPath + "?sessionId=" + sessionId; subs["sessionId"] = sessionId; str = HFTUtil.ReplaceParamsFlat(str, subs); m_log.Info("SCPH: Sending " + path);