fix: race condition on ResourceFolderModel tests
This (hopefully) fixes the race contiditions that sometimes got triggered in tests. Signed-off-by: flow <flowlnlnln@gmail.com>
This commit is contained in:
@ -499,7 +499,7 @@ void LocalModParseTask::processAsLitemod()
|
||||
|
||||
bool LocalModParseTask::abort()
|
||||
{
|
||||
m_aborted = true;
|
||||
m_aborted.store(true);
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -521,7 +521,7 @@ void LocalModParseTask::executeTask()
|
||||
}
|
||||
|
||||
if (m_aborted)
|
||||
emitAborted();
|
||||
emit finished();
|
||||
else
|
||||
emitSucceeded();
|
||||
}
|
||||
|
Reference in New Issue
Block a user