Merge remote-tracking branch 'upstream/kasen/core' into blendshapes

This commit is contained in:
HifiExperiments 2020-04-16 16:59:24 -07:00
commit 6b3b475a10
2 changed files with 4 additions and 4 deletions

View file

@ -734,7 +734,7 @@ BatchPointer Deserializer::readBatch(const json& node) {
std::string batchName;
if (node.count(keys::name)) {
batchName = node[keys::name];
batchName = node.value(keys::name, "");
}
BatchPointer result = std::make_shared<Batch>(batchName);
auto& batch = *result;

View file

@ -11,7 +11,8 @@
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
//
(function() {
var ROOT = Script.resolvePath('').split("app-more.js")[0];
var APP_NAME = "MORE...";
@ -68,8 +69,7 @@
if (instruction.action === "installScript") {
if (lastProcessing.action !== instruction.action || lastProcessing.script !== instruction.script) {
ScriptDiscoveryService.loadOneScript(instruction.script);
lastProcessing.action = instruction.action;
ScriptDiscoveryService.loadScript(instruction.script, true, false, false, true, false); // Force reload the script, do not use cache. lastProcessing.action = instruction.action;
lastProcessing.script = instruction.script;
Script.setTimeout(function() {
sendRunningScriptList();