diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-06-01 16:38:16 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-06-01 16:38:16 +0100 |
commit | 81457f2fff2c6700073c3df3af2565f250df3045 (patch) | |
tree | 6b9fda30e1015d1aa3a66ff98af3b19e1d6a84e0 /plugins | |
parent | 5cdbe0edde662c434cb5c4df8c5153a1b324a4b0 (diff) | |
download | prosody-81457f2fff2c6700073c3df3af2565f250df3045.tar.gz prosody-81457f2fff2c6700073c3df3af2565f250df3045.zip |
mod_admin_shell: Remove old variable declaration [luacheck]
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_admin_shell.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index a38bd000..a9ca797c 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -148,8 +148,6 @@ local function handle_line(event) local taskok, message = chunk(); - local result = st.stanza("repl-result"); - if not message then if type(taskok) ~= "string" and useglobalenv then taskok = session.serialize(taskok); |