forked from mirror/openmw-tes3mp
[Browser] Not trying to download extended data if server is unreachable
This commit is contained in:
parent
6b42f870a7
commit
dba98f9261
1 changed files with 4 additions and 1 deletions
|
@ -217,7 +217,10 @@ void NetController::updateInfo()
|
|||
|
||||
QStringList addr = sd->addr.split(":");
|
||||
sd->ping = PingRakNetServer(addr[0].toLatin1(), addr[1].toUShort());
|
||||
sed = getExtendedData(addr[0].toLatin1(), addr[1].toUShort());
|
||||
if(sd->ping != PING_UNREACHABLE)
|
||||
sed = getExtendedData(addr[0].toLatin1(), addr[1].toUShort());
|
||||
else
|
||||
qDebug() << "Server is unreachable";
|
||||
}
|
||||
|
||||
QStringList NetController::players()
|
||||
|
|
Loading…
Reference in a new issue