diff options
| author | Rider Linden <rider@lindenlab.com> | 2025-10-08 17:42:32 -0700 |
|---|---|---|
| committer | Rider Linden <rider@lindenlab.com> | 2025-10-08 17:42:32 -0700 |
| commit | 5306ad767bc1cc768145074aac25944c6059b3c2 (patch) | |
| tree | 33fecd8f0530fba1baf345e87d25f1d5b65ea503 /indra/newview/llscripteditorws.cpp | |
| parent | 93a4f8ae8715a4afcff94489e09866d9f1133f01 (diff) | |
Renamed types_lua_default.llsd to types_lua_default.xml, returning an empty lang def is not a success. Hopefully this will package correctly.
Diffstat (limited to 'indra/newview/llscripteditorws.cpp')
| -rw-r--r-- | indra/newview/llscripteditorws.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llscripteditorws.cpp b/indra/newview/llscripteditorws.cpp index cecac23383..814157e86c 100644 --- a/indra/newview/llscripteditorws.cpp +++ b/indra/newview/llscripteditorws.cpp @@ -334,12 +334,12 @@ LLSD LLScriptEditorWSServer::handleSyntaxRequest(const LLSD& params) const if (category == "defs.lua") { response["defs"] = LLSyntaxLua::instance().getTypesXML(); - response["success"] = true; + response["success"] = response["defs"].isDefined(); } else if (category == "defs.lsl") { response["defs"] = LLSyntaxIdLSL::instance().getKeywordsXML(); - response["success"] = true; + response["success"] = response["defs"].isDefined(); } else { |
