Merge pull request #1037 from overte-org/fix/bad_weak_ptr

Fix unhandled std::bad_weak_ptr
This commit is contained in:
ksuprynowicz 2024-06-20 23:31:13 +02:00 committed by GitHub
commit fa514bc52d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2054,7 +2054,7 @@ void ScriptManager::loadEntityScript(const EntityItemID& entityID, const QString
std::weak_ptr<ScriptManager> weakRef(shared_from_this());
scriptCache->getScriptContents(entityScript,
[this, weakRef, entityScript, entityID](const QString& url, const QString& contents, bool isURL, bool success, const QString& status) {
std::shared_ptr<ScriptManager> strongRef(weakRef);
std::shared_ptr<ScriptManager> strongRef = weakRef.lock();
if (!strongRef) {
qCWarning(scriptengine) << "loadEntityScript.contentAvailable -- ScriptManager was deleted during getScriptContents!!";
return;