1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 03:15:32 +00:00

[Browser] Crash fix (#168)

* [Browser] Crash Fix

* Update NetController.cpp
This commit is contained in:
Battlerax 2017-02-24 01:52:52 -06:00 committed by David Cernat
parent 3adbf17545
commit 186e3c2337

View file

@ -85,7 +85,12 @@ void NetController::setData(QString address, QJsonObject server, ServerModel *mo
model->setData(mi, server["passw"].toBool());
mi = model->index(0, ServerData::PING);
// This *should* fix a crash when a port isn't returned by data.
if(!address.contains(":"))
{
address.append(":25565");
}
QStringList addr = address.split(":");
model->setData(mi, PingRakNetServer(addr[0].toLatin1().data(), addr[1].toUShort()));
}