From a09686bf547e3384ec3f409f20023c16c69e7e9c Mon Sep 17 00:00:00 2001 From: Andrey Kleshchev Date: Tue, 1 Mar 2022 21:40:12 +0200 Subject: SL-16953 Deprecated NoInventoryLibrary Due to changes in SL-16715 --- indra/newview/app_settings/cmd_line.xml | 8 -------- indra/newview/app_settings/settings.xml | 2 +- indra/newview/lllogininstance.cpp | 11 +++++------ 3 files changed, 6 insertions(+), 15 deletions(-) diff --git a/indra/newview/app_settings/cmd_line.xml b/indra/newview/app_settings/cmd_line.xml index 4e186292f7..3100baf943 100644 --- a/indra/newview/app_settings/cmd_line.xml +++ b/indra/newview/app_settings/cmd_line.xml @@ -207,14 +207,6 @@ map-to NoAudio - - - noinvlib - - desc - Do not request the inventory library. - map-to - NoInventoryLibrary nonotifications diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index c4037a5144..fa699f9dbd 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -7055,7 +7055,7 @@ NoInventoryLibrary Comment - Do not request inventory library. + (Deprecated) Do not request inventory library. Persist 1 Type diff --git a/indra/newview/lllogininstance.cpp b/indra/newview/lllogininstance.cpp index e81d2cc082..531f0b172d 100644 --- a/indra/newview/lllogininstance.cpp +++ b/indra/newview/lllogininstance.cpp @@ -165,13 +165,12 @@ void LLLoginInstance::constructAuthParams(LLPointer user_credentia //requested_options.append("inventory-meat"); //requested_options.append("inventory-skel-targets"); #if (!defined LL_MINIMIAL_REQUESTED_OPTIONS) - if(FALSE == gSavedSettings.getBOOL("NoInventoryLibrary")) - { - requested_options.append("inventory-lib-root"); - requested_options.append("inventory-lib-owner"); - requested_options.append("inventory-skel-lib"); + + // Not requesting library will trigger mFatalNoLibraryRootFolder + requested_options.append("inventory-lib-root"); + requested_options.append("inventory-lib-owner"); + requested_options.append("inventory-skel-lib"); // requested_options.append("inventory-meat-lib"); - } requested_options.append("initial-outfit"); requested_options.append("gestures"); -- cgit v1.2.3