mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
fix for active socket check on ATP script download
This commit is contained in:
parent
bf3324fc6b
commit
76af3efe73
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ void Agent::requestScript() {
|
|||
// then wait for the nodeConnected signal to fire off the request
|
||||
|
||||
auto assetServer = nodeList->soloNodeOfType(NodeType::AssetServer);
|
||||
if (!assetServer || assetServer->getActiveSocket()) {
|
||||
if (!assetServer || !assetServer->getActiveSocket()) {
|
||||
qDebug() << "Waiting to connect to Asset Server for ATP script download.";
|
||||
_pendingScriptRequest = request;
|
||||
|
||||
|
|
Loading…
Reference in a new issue