summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2025-05-09 19:49:52 +0300
committerGeorge Hazan <george.hazan@gmail.com>2025-05-09 19:49:52 +0300
commitb0862a1dcc840b14b988b64a410bfc9076e624d3 (patch)
tree64b2017c0c16a958bcadc5b7668040b92bf6d3f0
parent688953e95536edd77988ab2f46027697b9b3f2e6 (diff)
Teams: valid trouter host for Teams Personal
-rw-r--r--protocols/Teams/src/teams_trouter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Teams/src/teams_trouter.cpp b/protocols/Teams/src/teams_trouter.cpp
index c1ac70ea9d..a8afa57115 100644
--- a/protocols/Teams/src/teams_trouter.cpp
+++ b/protocols/Teams/src/teams_trouter.cpp
@@ -68,7 +68,7 @@ void CTeamsProto::OnTrouterInfo(MHttpResponse *response, AsyncHttpRequest *)
void CTeamsProto::StartTrouter()
{
- auto *pReq = new AsyncHttpRequest(REQUEST_POST, HOST_OTHER, "https://go.trouter.teams.microsoft.com/v4/a", &CTeamsProto::OnTrouterInfo);
+ auto *pReq = new AsyncHttpRequest(REQUEST_POST, HOST_OTHER, "https://go.trouter.skype.com/v4/a", &CTeamsProto::OnTrouterInfo);
pReq->m_szUrl.AppendFormat("?epid=%s", m_szEndpoint.c_str());
pReq->AddHeader("x-skypetoken", m_szSkypeToken);
pReq->flags |= NLHRF_NODUMPHEADERS;