diff options
| author | Brad Kittenbrink <brad@lindenlab.com> | 2022-03-07 00:15:59 -0800 | 
|---|---|---|
| committer | Brad Kittenbrink <brad@lindenlab.com> | 2022-03-07 00:15:59 -0800 | 
| commit | 40b80251e48d5f0ae3695d9019261f9e472f3e16 (patch) | |
| tree | d6555d614d2806c05c08f5c171662beeb42c18b2 | |
| parent | 65a19a690c1fcc7d6e7c7449439eb2d93df3bf18 (diff) | |
SL-16825 saving of mfa_hash data now obeys the 'Remember Me' setting
| -rw-r--r-- | indra/newview/llstartup.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index b85c01a1f0..27ec8214f6 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -3598,7 +3598,7 @@ bool process_login_success_response()  		LLViewerMedia::getInstance()->openIDSetup(openid_url, openid_token);  	} -	if(response.has("mfa_hash")) +	if(response.has("mfa_hash") && gSavedSettings.getBOOL("RememberUser"))  	{  		LLPointer<LLSecAPIHandler> basic_secure_store = getSecHandler(BASIC_SECHANDLER);  		std::string grid(LLGridManager::getInstance()->getGridId()); | 
