summaryrefslogtreecommitdiff
path: root/indra/newview/llscripteditorws.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llscripteditorws.cpp')
-rw-r--r--indra/newview/llscripteditorws.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llscripteditorws.cpp b/indra/newview/llscripteditorws.cpp
index 3a99b5bb03..582d94e236 100644
--- a/indra/newview/llscripteditorws.cpp
+++ b/indra/newview/llscripteditorws.cpp
@@ -423,7 +423,7 @@ LLSD LLScriptEditorWSServer::handleFileWatcherFileListRequest() const
LLSD response;
response["temp_dir"] = LLFile::tmpdir();
-
+
// Add array of script_id's from active scripts
LLSD script_ids_array = LLSD::emptyArray();
for (const auto& [script_id, subinfo] : mSubscriptions)
@@ -431,9 +431,9 @@ LLSD LLScriptEditorWSServer::handleFileWatcherFileListRequest() const
script_ids_array.append(script_id);
}
response["script_ids"] = script_ids_array;
-
+
response["success"] = true;
-
+
return response;
}