summaryrefslogtreecommitdiff
path: root/indra/viewer_components/login
diff options
context:
space:
mode:
authornat-goodspeed <nat@lindenlab.com>2024-08-06 09:05:25 -0400
committerGitHub <noreply@github.com>2024-08-06 09:05:25 -0400
commit628cd605080546c400d3343bf0834bebf693bbcf (patch)
tree1719f8ce969f99aea819875c35cbde5e9ee0bd32 /indra/viewer_components/login
parentd6abce3968925c5cb58c11f1c6fc936605f55c57 (diff)
parentb12d135c38e327774c01594acfa96e37a9e67a64 (diff)
Merge pull request #2185 from secondlife/lua-login2
Add 'LLPanelLogin' 'login', 'savedLogins' operations.
Diffstat (limited to 'indra/viewer_components/login')
-rw-r--r--indra/viewer_components/login/lllogin.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/viewer_components/login/lllogin.cpp b/indra/viewer_components/login/lllogin.cpp
index 2a0468f3ad..dfaaff21c5 100644
--- a/indra/viewer_components/login/lllogin.cpp
+++ b/indra/viewer_components/login/lllogin.cpp
@@ -53,7 +53,9 @@ class LLLogin::Impl
{
public:
Impl():
- mPump("login", true) // Create the module's event pump with a tweaked (unique) name.
+ // Create the module's event pump, and do not tweak the name. Multiple
+ // parties depend on this LLEventPump having exactly the name "login".
+ mPump("login", false)
{
mValidAuthResponse["status"] = LLSD();
mValidAuthResponse["errorcode"] = LLSD();