mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-07 12:51:58 +02:00
Do not cache newly installed scripts.
This commit is contained in:
parent
ebf99f7c48
commit
79528170db
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