diff --git a/src/gui/accountstate.cpp b/src/gui/accountstate.cpp index 08edc43bf..a368a2193 100644 --- a/src/gui/accountstate.cpp +++ b/src/gui/accountstate.cpp @@ -190,7 +190,8 @@ void AccountState::checkConnectivity() } else { // Check the server and then the auth. -#ifdef Q_OS_WIN +// Let's try this for all OS and see if it fixes the Qt issues we have on Linux #4720 #3888 #4051 +//#ifdef Q_OS_WIN // There seems to be a bug in Qt on Windows where QNAM sometimes stops // working correctly after the computer woke up from sleep. See #2895 #2899 // and #2973. @@ -201,7 +202,7 @@ void AccountState::checkConnectivity() // If we don't reset the ssl config a second CheckServerJob can produce a // ssl config that does not have a sensible certificate chain. account()->setSslConfiguration(QSslConfiguration()); -#endif +//#endif conValidator->checkServerAndAuth(); } }