mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 08:21:24 +02:00
Fix compilation error in DomainServer.cpp
This commit is contained in:
parent
ce6ae40432
commit
79ce64aa3a
1 changed files with 1 additions and 1 deletions
|
@ -1209,7 +1209,7 @@ void DomainServer::sendHeartbeatToIceServer() {
|
||||||
auto plaintext = QByteArray::fromRawData(_iceServerHeartbeatPacket->getPayload(), _iceServerHeartbeatPacket->getPayloadSize());
|
auto plaintext = QByteArray::fromRawData(_iceServerHeartbeatPacket->getPayload(), _iceServerHeartbeatPacket->getPayloadSize());
|
||||||
|
|
||||||
// generate a signature for the plaintext data in the packet
|
// generate a signature for the plaintext data in the packet
|
||||||
auto signature = accountManager.getAccountInfo().signPlaintext(plaintext);
|
auto signature = accountManager->getAccountInfo().signPlaintext(plaintext);
|
||||||
|
|
||||||
// pack the signature with the data
|
// pack the signature with the data
|
||||||
heartbeatDataStream << signature;
|
heartbeatDataStream << signature;
|
||||||
|
|
Loading…
Reference in a new issue