mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_announce: Fix luacheck warnings
This commit is contained in:
parent
f03ef26e4b
commit
60f44b1556
2 changed files with 2 additions and 3 deletions
|
@ -136,7 +136,6 @@ if os.getenv("PROSODY_STRICT_LINT") ~= "1" then
|
||||||
|
|
||||||
"plugins/mod_admin_adhoc.lua";
|
"plugins/mod_admin_adhoc.lua";
|
||||||
"plugins/mod_admin_telnet.lua";
|
"plugins/mod_admin_telnet.lua";
|
||||||
"plugins/mod_announce.lua";
|
|
||||||
"plugins/mod_bosh.lua";
|
"plugins/mod_bosh.lua";
|
||||||
"plugins/mod_groups.lua";
|
"plugins/mod_groups.lua";
|
||||||
"plugins/mod_http_files.lua";
|
"plugins/mod_http_files.lua";
|
||||||
|
|
|
@ -37,7 +37,7 @@ end
|
||||||
|
|
||||||
-- Old <message>-based jabberd-style announcement sending
|
-- Old <message>-based jabberd-style announcement sending
|
||||||
function handle_announcement(event)
|
function handle_announcement(event)
|
||||||
local origin, stanza = event.origin, event.stanza;
|
local stanza = event.stanza;
|
||||||
local node, host, resource = jid.split(stanza.attr.to);
|
local node, host, resource = jid.split(stanza.attr.to);
|
||||||
|
|
||||||
if resource ~= "announce/online" then
|
if resource ~= "announce/online" then
|
||||||
|
@ -72,7 +72,7 @@ local announce_layout = dataforms_new{
|
||||||
{ name = "announcement", type = "text-multi", required = true, label = "Announcement" };
|
{ name = "announcement", type = "text-multi", required = true, label = "Announcement" };
|
||||||
};
|
};
|
||||||
|
|
||||||
function announce_handler(self, data, state)
|
function announce_handler(_, data, state)
|
||||||
if state then
|
if state then
|
||||||
if data.action == "cancel" then
|
if data.action == "cancel" then
|
||||||
return { status = "canceled" };
|
return { status = "canceled" };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue