mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-08-28 07:55:18 +02:00
Merge pull request #11 from kasenvr/fix/install-caching
Do not cache newly installed scripts.
This commit is contained in:
commit
a1a6258614
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@
|
|||
|
||||
if (instruction.action === "installScript") {
|
||||
if (lastProcessing.action !== instruction.action || lastProcessing.script !== instruction.script) {
|
||||
ScriptDiscoveryService.loadOneScript(instruction.script);
|
||||
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() {
|
||||
|
|
Loading…
Reference in a new issue