mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 19:04:32 +02:00
Call correct NodeList::reset() from Application
This commit is contained in:
parent
4c4589271c
commit
ede8859cc7
1 changed files with 2 additions and 2 deletions
|
@ -1298,8 +1298,8 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo
|
|||
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->getDomainHandler(), SIGNAL(limitOfSilentDomainCheckInsReached()),
|
||||
nodeList.data(), SLOT(reset()));
|
||||
connect(&nodeList->getDomainHandler(), &DomainHandler::limitOfSilentDomainCheckInsReached,
|
||||
[nodeList]() {nodeList->reset("Domain checkin limit"); });
|
||||
|
||||
auto dialogsManager = DependencyManager::get<DialogsManager>();
|
||||
#if defined(Q_OS_ANDROID)
|
||||
|
|
Loading…
Reference in a new issue