Software /
code /
prosody
Changeset
13485:3bdbaba15c00
mod_announce: Suppress luacheck warnings
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 26 Apr 2024 10:37:20 +0100 |
parents | 13484:e22609460975 |
children | 13486:fdd1438d9ef7 |
files | plugins/mod_announce.lua |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_announce.lua Wed Apr 24 11:50:13 2024 +0100 +++ b/plugins/mod_announce.lua Fri Apr 26 10:37:20 2024 +0100 @@ -137,7 +137,7 @@ { name = "text", type = "string" }; }; host_selector = "host"; - handler = function(self, host, text) + handler = function(self, host, text) --luacheck: ignore 212/self local msg = st.message({ from = host, id = id.short() }) :text_tag("body", text); local count = send_to_all(msg, host); @@ -155,7 +155,7 @@ { name = "text", type = "string" }; }; host_selector = "host"; - handler = function(self, host, text) + handler = function(self, host, text) --luacheck: ignore 212/self local msg = st.message({ from = host, id = id.short(), type = "headline" }) :text_tag("body", text); local count = send_to_online(msg, host); @@ -174,7 +174,7 @@ { name = "text", type = "string" }; }; host_selector = "host"; - handler = function(self, host, role, text) + handler = function(self, host, role, text) --luacheck: ignore 212/self local msg = st.message({ from = host, id = id.short() }) :text_tag("body", text); local count = send_to_role(msg, role, host);