mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
adding true fix for localhost timeouts
This commit is contained in:
parent
380f24b37f
commit
647c4e1694
2 changed files with 1 additions and 4 deletions
|
@ -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"))
|
||||
|
|
|
@ -115,9 +115,7 @@ void DomainHandler::softReset() {
|
|||
}
|
||||
|
||||
void DomainHandler::hardReset() {
|
||||
if (!_isInErrorState) {
|
||||
emit resetting();
|
||||
}
|
||||
emit resetting();
|
||||
|
||||
softReset();
|
||||
_isInErrorState = false;
|
||||
|
|
Loading…
Reference in a new issue