mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 20:55:10 +02:00
Fix property assignment in GetScriptStatusRequest
This commit is contained in:
parent
9e17f63b8f
commit
ff65d0c8cb
1 changed files with 4 additions and 4 deletions
|
@ -17,10 +17,10 @@ GetScriptStatusRequest::~GetScriptStatusRequest() {
|
|||
void GetScriptStatusRequest::start() {
|
||||
auto client = DependencyManager::get<EntityScriptClient>();
|
||||
client->getEntityServerScriptStatus(_entityID, [this](bool responseReceived, bool isRunning, EntityScriptStatus status, QString errorInfo) {
|
||||
responseReceived = responseReceived;
|
||||
isRunning = isRunning;
|
||||
status = status;
|
||||
errorInfo = errorInfo;
|
||||
_responseReceived = responseReceived;
|
||||
_isRunning = isRunning;
|
||||
_status = status;
|
||||
_errorInfo = errorInfo;
|
||||
|
||||
emit finished(this);
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue