diff options
| author | CG Linden <cg@lindenlab.com> | 2010-03-31 15:25:04 -0700 |
|---|---|---|
| committer | CG Linden <cg@lindenlab.com> | 2010-03-31 15:25:04 -0700 |
| commit | a1092147e0ee845a96d16066db9265cf1fa7f75b (patch) | |
| tree | 670ac5f3f16ae02c1ac5b28cdd790f0afcc92a84 /indra/newview/llstartup.cpp | |
| parent | ac271e1d50bd601d9fbf18655596fa695b80dec0 (diff) | |
| parent | 5c190996222ce2cf14997e16e16beb110173c0a2 (diff) | |
merge
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 |
