mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-16 21:47:09 +02:00
Typos
This commit is contained in:
parent
b665f38c1f
commit
f0fcb94a6a
1 changed files with 5 additions and 5 deletions
|
@ -513,14 +513,14 @@ void NodeList::processDomainServerConnectionTokenPacket(QSharedPointer<ReceivedM
|
|||
|
||||
void NodeList::processDomainServerList(QSharedPointer<ReceivedMessage> message) {
|
||||
if (_domainHandler.getSockAddr().isNull()) {
|
||||
qWarning() << "IGNORING DomainList packet while not connect to a Domain Server";
|
||||
qWarning() << "IGNORING DomainList packet while not connected to a Domain Server";
|
||||
// refuse to process this packet if we aren't currently connected to the DS
|
||||
return;
|
||||
}
|
||||
auto domainUuid = _domainHandler.getUUID();
|
||||
auto messageSourceUuid = message->getSourceID();
|
||||
if (!domainUuid.isNull() && domainUuid != messageSourceUuid) {
|
||||
qWarning() << "IGNORING DomainList packet from" << messageSourceUuid << "while connected to" << domainUuid;
|
||||
QUuid domainHandlerUUID = _domainHandler.getUUID();
|
||||
QUuid messageSourceUUID = message->getSourceID();
|
||||
if (!domainHandlerUUID.isNull() && domainHandlerUUID != messageSourceUUID) {
|
||||
qWarning() << "IGNORING DomainList packet from" << messageSourceUUID << "while connected to" << domainHandlerUUID;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue