diff options
| author | Mike Antipov <mantipov@productengine.com> | 2010-04-01 12:28:08 +0300 |
|---|---|---|
| committer | Mike Antipov <mantipov@productengine.com> | 2010-04-01 12:28:08 +0300 |
| commit | 25976eb3da84cfa23ec6db779f830971ce8665e3 (patch) | |
| tree | 2975019de434ebe9fc4f4ffbd92d56a21b3d8bf1 /indra/newview/llstartup.cpp | |
| parent | 7f38ea147466b6d045c90d710402b2ac321dbfd9 (diff) | |
| parent | 68870a1f59c11a173353698b994f4540b214d57f (diff) | |
Merge from default branch
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llstartup.cpp')
| -rw-r--r-- | indra/newview/llstartup.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 1a1dffe85c..b5a73a3143 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -3087,6 +3087,13 @@ bool process_login_success_response() } } + // Start the process of fetching the OpenID session cookie for this user login + std::string openid_url = response["openid_url"]; + if(!openid_url.empty()) + { + std::string openid_token = response["openid_token"]; + LLViewerMedia::openIDSetup(openid_url, openid_token); + } bool success = false; // JC: gesture loading done below, when we have an asset system |
