From 3c4f336e728a637778dca5e1434393360bd99f56 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 10 Jun 2016 09:11:25 -0700 Subject: [PATCH] re-instate NodeList reset on limit of check ins reached --- interface/src/Application.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 90d8b677fe..504d573678 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -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();