Update https_call.cpp

This commit is contained in:
moss9001 2021-10-21 17:47:46 +03:00
parent dc72582fb6
commit f59d34c001

View file

@ -99,7 +99,14 @@ private:
// host // host
stream << "Host: " << m_Call.host() << ":" << m_Endpoint.port() << CrLf; stream << "Host: " << m_Call.host();
if (m_Call.port() != 0) {
//ASSERT(m_Endpoint.port() == m_Call.port());
stream << ":" << m_Call.port();
}
stream << CrLf;
// content // content