mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 12:04:18 +02:00
update connection for packet version mismatch
This commit is contained in:
parent
9ee62a8a38
commit
ffcd8e1613
1 changed files with 2 additions and 1 deletions
|
@ -462,7 +462,8 @@ Application::Application(int& argc, char** argv, QElapsedTimer &startup_time) :
|
|||
connect(nodeList.data(), &NodeList::uuidChanged, _myAvatar, &MyAvatar::setSessionUUID);
|
||||
connect(nodeList.data(), &NodeList::uuidChanged, this, &Application::setSessionUUID);
|
||||
connect(nodeList.data(), &NodeList::limitOfSilentDomainCheckInsReached, nodeList.data(), &NodeList::reset);
|
||||
connect(nodeList.data(), &NodeList::packetVersionMismatch, this, &Application::notifyPacketVersionMismatch);
|
||||
connect(&nodeList->getPacketReceiver(), &PacketReceiver::packetVersionMismatch,
|
||||
this, &Application::notifyPacketVersionMismatch);
|
||||
|
||||
// connect to appropriate slots on AccountManager
|
||||
AccountManager& accountManager = AccountManager::getInstance();
|
||||
|
|
Loading…
Reference in a new issue