Simplify ScriptableAvatar.cpp helper script engine lambda

Co-authored-by: HifiExperiments <53453710+HifiExperiments@users.noreply.github.com>
This commit is contained in:
ksuprynowicz 2024-04-30 16:27:57 +02:00 committed by GitHub
parent 9f80c9de58
commit 2010bb44e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -341,9 +341,9 @@ void ScriptableAvatar::setAvatarEntityData(const AvatarEntityMap& avatarEntityDa
while (dataItr != avatarEntityData.end()) {
EntityItemProperties properties;
const QByteArray& blob = dataItr.value();
{
_helperScriptEngine.run( [&] {
if (!blob.isNull() && EntityItemProperties::blobToProperties(*_helperScriptEngine.get(), blob, properties)) {
if (!blob.isNull()) {
_helperScriptEngine.run([&] {
if (EntityItemProperties::blobToProperties(*_helperScriptEngine.get(), blob, properties)) {
newProperties[dataItr.key()] = properties;
}
});