diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-04-12 19:28:29 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-04-12 19:31:21 +0300 |
commit | 396ae60e1528515d0cbdfc4290b24ccb172998c8 (patch) | |
tree | 779f80cf4a91db7a43622a9a6d50edc66ce125a8 /indra/llcommon | |
parent | 5ce6c02ab3db983c7c876e5a41550bd94e53d0a7 (diff) |
'Lua Scripts' floater clean up
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/lualistener.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/lualistener.cpp b/indra/llcommon/lualistener.cpp index c11ab6b1c3..d4bd73a9fb 100644 --- a/indra/llcommon/lualistener.cpp +++ b/indra/llcommon/lualistener.cpp @@ -44,8 +44,8 @@ LuaListener::LuaListener(lua_State* L): LLEventPump::inventName("LuaState"), [this](const LLSD& status) { - const auto& coro_name = status["coro"].asString(); - const auto& statsd = status["status"].asString(); + auto coro_name = status["coro"].asString(); + auto statsd = status["status"].asString(); if ((statsd == "close_all") || ((statsd == "close") && (coro_name == mCoroName))) { // If a Lua script is still blocked in getNext() during |