mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 19:21:16 +02: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 nodeList = DependencyManager::get<NodeList>();
|
||||||
auto accountManager = DependencyManager::get<AccountManager>();
|
auto accountManager = DependencyManager::get<AccountManager>();
|
||||||
auto isInErrorState = nodeList->getDomainHandler().isInErrorState();
|
auto isInErrorState = nodeList->getDomainHandler().isInErrorState();
|
||||||
auto isConnected = nodeList->getDomainHandler().isConnected();
|
|
||||||
|
|
||||||
QString buildVersion = " - "
|
QString buildVersion = " - "
|
||||||
+ (BuildInfo::BUILD_TYPE == BuildInfo::BuildType::Stable ? QString("Version") : QString("Build"))
|
+ (BuildInfo::BUILD_TYPE == BuildInfo::BuildType::Stable ? QString("Version") : QString("Build"))
|
||||||
|
|
|
@ -115,9 +115,7 @@ void DomainHandler::softReset() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void DomainHandler::hardReset() {
|
void DomainHandler::hardReset() {
|
||||||
if (!_isInErrorState) {
|
emit resetting();
|
||||||
emit resetting();
|
|
||||||
}
|
|
||||||
|
|
||||||
softReset();
|
softReset();
|
||||||
_isInErrorState = false;
|
_isInErrorState = false;
|
||||||
|
|
Loading…
Reference in a new issue