summaryrefslogtreecommitdiff
path: root/indra/newview/llscripteditorws.cpp
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2025-10-01 15:56:23 -0700
committerRider Linden <rider@lindenlab.com>2025-10-07 09:19:43 -0700
commit4196360df4d514f01255f98947dd14762085cb21 (patch)
tree08ecc3ed74fb68eabd1a67eec1d72467aba03f6e /indra/newview/llscripteditorws.cpp
parent339e7ccae99aab39a01aef052719ab9b3432919b (diff)
Inconsistent snakes vs. camels.
Diffstat (limited to 'indra/newview/llscripteditorws.cpp')
-rw-r--r--indra/newview/llscripteditorws.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llscripteditorws.cpp b/indra/newview/llscripteditorws.cpp
index 72aaf919ea..0756859ec4 100644
--- a/indra/newview/llscripteditorws.cpp
+++ b/indra/newview/llscripteditorws.cpp
@@ -449,7 +449,7 @@ void LLScriptEditorWSServer::sendCompileResults(const std::string &script_id, co
bool is_lua = core && (core->isLuauLanguage());
LLSD params;
- params["scriptId"] = script_id;
+ params["script_id"] = script_id;
params["success"] = results["compiled"].asBoolean();
params["running"] = results["is_running"].asBoolean();
if (results.has("errors"))
@@ -624,9 +624,9 @@ void LLScriptEditorWSServer::forwardChatToIDE(const LLChat& chat_msg) const
}
std::string script_id = it->first;
LLSD message;
- message["scriptId"] = script_id;
- message["objectId"] = chat_msg.mFromID;
- message["objectName"] = chat_msg.mFromName;
+ message["script_id"] = script_id;
+ message["object_id"] = chat_msg.mFromID;
+ message["object_name"] = chat_msg.mFromName;
message["message"] = chat_msg.mText;
if (is_error)