diff options
author | Brad Kittenbrink <brad@lindenlab.com> | 2021-11-23 17:44:06 -0800 |
---|---|---|
committer | Brad Kittenbrink <brad@lindenlab.com> | 2021-11-23 17:44:06 -0800 |
commit | a1fb89ebb6e6cc89ed301b10305c145da3be295f (patch) | |
tree | 44cd5b4874bd0b3a1f91584a82c7c57dd70922d1 /indra | |
parent | 9957c28ddc5e5c129af2db662da7d69f1509af65 (diff) |
SL-16365 Viewer adds empty mfa token to login params
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/lllogininstance.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/lllogininstance.cpp b/indra/newview/lllogininstance.cpp index e81d2cc082..25182593ce 100644 --- a/indra/newview/lllogininstance.cpp +++ b/indra/newview/lllogininstance.cpp @@ -225,6 +225,7 @@ void LLLoginInstance::constructAuthParams(LLPointer<LLCredential> user_credentia request_params["id0"] = mSerialNumber; request_params["host_id"] = gSavedSettings.getString("HostID"); request_params["extended_errors"] = true; // request message_id and message_args + request_params["token"] = ""; // log request_params _before_ adding the credentials LL_DEBUGS("LLLogin") << "Login parameters: " << LLSDOStreamer<LLSDNotationFormatter>(request_params) << LL_ENDL; |