diff options
author | Brad Kittenbrink <brad@lindenlab.com> | 2021-12-13 14:58:38 -0800 |
---|---|---|
committer | Brad Kittenbrink <brad@lindenlab.com> | 2021-12-13 14:58:38 -0800 |
commit | 6d177898a9a5883ad7939be162e51d9a61d0e0b1 (patch) | |
tree | 9c3d508f877d4434c59d40ee7e00d65fc9a46c0d /indra/newview/llstartup.cpp | |
parent | 30cd108c7e4a524c9f17060d5b2f7b4ff193b4b8 (diff) |
SL-16501 SLMFAHash is now saved client side
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r-- | indra/newview/llstartup.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 228d64c17b..05d17b47bc 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -3605,6 +3605,11 @@ bool process_login_success_response() LLViewerMedia::getInstance()->openIDSetup(openid_url, openid_token); } + if(response.has("slmfa_hash")) + { + gSavedPerAccountSettings.setString("SLMFAHash", response["slmfa_hash"]); + } + bool success = false; // JC: gesture loading done below, when we have an asset system // in place. Don't delete/clear gUserCredentials until then. |