diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-06-10 13:15:41 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-06-10 13:15:41 -0400 |
commit | f8b1823c8a2ae2ec139d5a4f5dd1f50f9f0f6ad0 (patch) | |
tree | cbe261bf3db8eba95937402acdec04bc037ba02e /indra/llcommon/llleap.cpp | |
parent | 486a6b189a3ea3fb2700718a64f574c3240fae7d (diff) | |
parent | dbc785d4433080ca49b9cd899c756c9700a1a794 (diff) |
Merge branch 'release/luau-scripting' into lua-login
Diffstat (limited to 'indra/llcommon/llleap.cpp')
-rw-r--r-- | indra/llcommon/llleap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llleap.cpp b/indra/llcommon/llleap.cpp index b81390ee2c..d787bf2f45 100644 --- a/indra/llcommon/llleap.cpp +++ b/indra/llcommon/llleap.cpp @@ -341,7 +341,7 @@ public: { // The LLSD object we got from our stream contains the // keys we need. - LLEventPumps::instance().obtain(data["pump"]).post(data["data"]); + LLEventPumps::instance().post(data["pump"], data["data"]); } catch (const std::exception& err) { @@ -352,7 +352,7 @@ public: // request, send a reply. We happen to know who originated // this request, and the reply LLEventPump of interest. // Not our problem if the plugin ignores the reply event. - data["reply"] = mReplyPump.getName(); + data["reply"] = mListener->getReplyPump().getName(); sendReply(llsd::map("error", stringize(LLError::Log::classname(err), ": ", err.what())), data); |