From 5287ec1eee45fadcfa523fd2b1710f565172c305 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Sat, 5 Nov 2016 10:15:56 -0700 Subject: [PATCH] Fix includes hitting max retries locking the script up --- libraries/script-engine/src/ScriptCache.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libraries/script-engine/src/ScriptCache.cpp b/libraries/script-engine/src/ScriptCache.cpp index 96e3d7e914..025447a5b8 100644 --- a/libraries/script-engine/src/ScriptCache.cpp +++ b/libraries/script-engine/src/ScriptCache.cpp @@ -222,6 +222,9 @@ void ScriptCache::scriptContentAvailable() { }); } else { // Dubious, but retained here because it matches the behavior before fixing the threading + + allCallbacks = scriptRequest.scriptUsers; + scriptContent = _scriptCache[url]; finished = true; qCWarning(scriptengine) << "Error loading script from URL " << url;