diff options
author | Kim Alvefur <zash@zash.se> | 2019-01-17 01:15:29 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-01-17 01:15:29 +0100 |
commit | fc632a3a78bdc638b421f86369f5e38f6e8a82ed (patch) | |
tree | f1b5c645406428fd97abcddf53b7c9a190324726 /plugins/mod_motd.lua | |
parent | 8746fdc0c095c97e529f65c022e000da872bffa5 (diff) | |
download | prosody-fc632a3a78bdc638b421f86369f5e38f6e8a82ed.tar.gz prosody-fc632a3a78bdc638b421f86369f5e38f6e8a82ed.zip |
mod_motd: Remove unused variable [luacheck]
Diffstat (limited to 'plugins/mod_motd.lua')
-rw-r--r-- | plugins/mod_motd.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_motd.lua b/plugins/mod_motd.lua index c68e77a8..47e64be3 100644 --- a/plugins/mod_motd.lua +++ b/plugins/mod_motd.lua @@ -18,7 +18,7 @@ local st = require "util.stanza"; motd_text = motd_text:gsub("^%s*(.-)%s*$", "%1"):gsub("\n[ \t]+", "\n"); -- Strip indentation from the config module:hook("presence/initial", function (event) - local session, stanza = event.origin, event.stanza; + local session = event.origin; local motd_stanza = st.message({ to = session.full_jid, from = motd_jid }) :tag("body"):text(motd_text); |