mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-10 01:14:01 +02:00
Ignore residual "connection denied" packets from previous domain
This commit is contained in:
parent
6926cd205a
commit
29e5bfdb94
1 changed files with 1 additions and 1 deletions
|
@ -531,7 +531,7 @@ bool DomainHandler::reasonSuggestsDomainLogin(ConnectionRefusedReason reasonCode
|
|||
void DomainHandler::processDomainServerConnectionDeniedPacket(QSharedPointer<ReceivedMessage> message) {
|
||||
|
||||
// Ignore any residual packets from previous domain.
|
||||
if (message->getSenderSockAddr().getAddress().toString() != _domainURL.host()) {
|
||||
if (!message->getSenderSockAddr().getAddress().isEqual(_sockAddr.getAddress())) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue