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 | 3a00266c140b1d829d1cc3ce11dbff2c706d7c0b (patch) | |
tree | 6b9fda30e1015d1aa3a66ff98af3b19e1d6a84e0 /plugins | |
parent | ac8a1c76f416d474451807a9231c9bdd9d95e2e8 (diff) | |
download | prosody-3a00266c140b1d829d1cc3ce11dbff2c706d7c0b.tar.gz prosody-3a00266c140b1d829d1cc3ce11dbff2c706d7c0b.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); |