fixed sudden webconsole hangs

This commit is contained in:
orignal 2020-05-06 14:54:41 -04:00
parent 9b6facf3b0
commit 789ff702ac

View File

@ -1227,10 +1227,10 @@ namespace http {
LogPrint(eLogInfo, "HTTPServer: password set to ", pass); LogPrint(eLogInfo, "HTTPServer: password set to ", pass);
} }
m_Thread = std::unique_ptr<std::thread>(new std::thread (std::bind (&HTTPServer::Run, this))); m_IsRunning = true;
m_Thread.reset (new std::thread (std::bind (&HTTPServer::Run, this)));
m_Acceptor.listen (); m_Acceptor.listen ();
Accept (); Accept ();
m_IsRunning = true;
} }
void HTTPServer::Stop () void HTTPServer::Stop ()