summaryrefslogtreecommitdiff
path: root/indra/newview/llscripteditorws.cpp
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2026-08-27 14:11:20 -0700
committerGitHub <noreply@github.com>2026-08-27 14:11:20 -0700
commit0d4540a5cfa6a0027cb2a635958da1a0b45cea50 (patch)
tree0e929dcc1cccb03e0c3270001605015d49ff9f00 /indra/newview/llscripteditorws.cpp
parente6e85510e59ea68e75b565de49522ce3327c056d (diff)
Apply suggestions from code review
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Diffstat (limited to 'indra/newview/llscripteditorws.cpp')
-rw-r--r--indra/newview/llscripteditorws.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llscripteditorws.cpp b/indra/newview/llscripteditorws.cpp
index 41efa7e016..6563a5418e 100644
--- a/indra/newview/llscripteditorws.cpp
+++ b/indra/newview/llscripteditorws.cpp
@@ -970,10 +970,9 @@ LLSD LLScriptEditorWSServer::handleObjectScriptRecompileAll(
queue->setTitle(LLTrans::getString("CompileQueueTitle"));
- LLSD response;
response["success"] = true;
response["object_id"] = root->getID();
- response["target"] = target;
+ response["target"] = (target == "auto-luau") ? "luau" : target;
response["queued"] = true;
return response;
}