mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 23:51:09 -04:00
[Browser] Not trying to download extended data if server is unreachable
This commit is contained in:
parent
6b42f870a7
commit
dba98f9261
@ -217,7 +217,10 @@ void NetController::updateInfo()
|
|||||||
|
|
||||||
QStringList addr = sd->addr.split(":");
|
QStringList addr = sd->addr.split(":");
|
||||||
sd->ping = PingRakNetServer(addr[0].toLatin1(), addr[1].toUShort());
|
sd->ping = PingRakNetServer(addr[0].toLatin1(), addr[1].toUShort());
|
||||||
|
if(sd->ping != PING_UNREACHABLE)
|
||||||
sed = getExtendedData(addr[0].toLatin1(), addr[1].toUShort());
|
sed = getExtendedData(addr[0].toLatin1(), addr[1].toUShort());
|
||||||
|
else
|
||||||
|
qDebug() << "Server is unreachable";
|
||||||
}
|
}
|
||||||
|
|
||||||
QStringList NetController::players()
|
QStringList NetController::players()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user