mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
Fix call to constructICEPingReplyPacket
This commit is contained in:
parent
90407e2720
commit
84796b20e0
1 changed files with 1 additions and 1 deletions
|
@ -1393,7 +1393,7 @@ void DomainServer::processICEPeerInformationPacket(QSharedPointer<NLPacket> pack
|
|||
|
||||
void DomainServer::processICEPingPacket(QSharedPointer<NLPacket> packet) {
|
||||
auto limitedNodeList = DependencyManager::get<LimitedNodeList>();
|
||||
auto pingReplyPacket = limitedNodeList->constructICEPingReplyPacket(packet, limitedNodeList->getSessionUUID());
|
||||
auto pingReplyPacket = limitedNodeList->constructICEPingReplyPacket(*packet, limitedNodeList->getSessionUUID());
|
||||
|
||||
limitedNodeList->sendPacket(std::move(pingReplyPacket), packet->getSenderSockAddr());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue