From b861ea05b4dd279ff7c3c5a969945cd3b3d2541c Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Fri, 21 Jul 2017 05:58:01 -0700 Subject: [PATCH] MGR: Remove CheckForVersionUpdate() call from CNetworkConnection::Poll(). It caused Manager to crash on startup of Windows 10 --- clientgui/MainDocument.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/clientgui/MainDocument.cpp b/clientgui/MainDocument.cpp index 9e96736da1..056fed96eb 100644 --- a/clientgui/MainDocument.cpp +++ b/clientgui/MainDocument.cpp @@ -169,7 +169,6 @@ void CNetworkConnection::Poll() { if (!retval) { wxLogTrace(wxT("Function Status"), wxT("CNetworkConnection::Poll - Connection Success")); SetStateSuccess(m_strNewComputerName, m_strNewComputerPassword); - m_pDocument->CheckForVersionUpdate(); } else if (ERR_AUTHENTICATOR == retval) { wxLogTrace(wxT("Function Status"), wxT("CNetworkConnection::Poll - RPC Authorization - ERR_AUTHENTICATOR")); SetStateErrorAuthentication();