adding true fix for localhost timeouts

This commit is contained in:
Wayne Chen 2018-09-13 13:51:42 -07:00
parent 380f24b37f
commit 647c4e1694
2 changed files with 1 additions and 4 deletions

View file

@ -6347,7 +6347,6 @@ void Application::updateWindowTitle() const {
auto nodeList = DependencyManager::get<NodeList>();
auto accountManager = DependencyManager::get<AccountManager>();
auto isInErrorState = nodeList->getDomainHandler().isInErrorState();
auto isConnected = nodeList->getDomainHandler().isConnected();
QString buildVersion = " - "
+ (BuildInfo::BUILD_TYPE == BuildInfo::BuildType::Stable ? QString("Version") : QString("Build"))

View file

@ -115,9 +115,7 @@ void DomainHandler::softReset() {
}
void DomainHandler::hardReset() {
if (!_isInErrorState) {
emit resetting();
}
emit resetting();
softReset();
_isInErrorState = false;