diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-06-07 22:19:17 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-06-07 22:21:07 +0300 |
commit | 314d08681415d8474bf4885c80df0a1abafbe78b (patch) | |
tree | 00a7215610f47c34dec2ff9dbdf0cc4a589011cc /indra/newview/llappviewer.cpp | |
parent | ff65e23f2097d4cca524d58b4fa2ab839184ee27 (diff) |
SL-17546 Do not launch updater for a non-interactible instance
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 170b22c2ef..089e45411c 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -1125,7 +1125,8 @@ bool LLAppViewer::init() gGLActive = FALSE; #if LL_RELEASE_FOR_DOWNLOAD - if (!gSavedSettings.getBOOL("CmdLineSkipUpdater")) + // Skip updater if this is a non-interactive instance + if (!gSavedSettings.getBOOL("CmdLineSkipUpdater") && !gNonInteractive) { LLProcess::Params updater; updater.desc = "updater process"; |