mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 18:02:13 +02:00
re-instate NodeList reset on limit of check ins reached
This commit is contained in:
parent
e4ebafa0d8
commit
3c4f336e72
1 changed files with 3 additions and 0 deletions
|
@ -655,6 +655,9 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer) :
|
|||
connect(nodeList.data(), &NodeList::uuidChanged, this, &Application::setSessionUUID);
|
||||
connect(nodeList.data(), &NodeList::packetVersionMismatch, this, &Application::notifyPacketVersionMismatch);
|
||||
|
||||
// you might think we could just do this in NodeList but we only want this connection for Interface
|
||||
connect(nodeList.data(), &NodeList::limitOfSilentDomainCheckInsReached, nodeList.data(), &NodeList::reset);
|
||||
|
||||
// connect to appropriate slots on AccountManager
|
||||
auto accountManager = DependencyManager::get<AccountManager>();
|
||||
|
||||
|
|
Loading…
Reference in a new issue