mod_pubsub: Silence warning about 'service' as argument [luacheck]

Maybe the 'service' in the outer scope should be moved down to minimize
overlap with other functions that receive the same service as argument?
This commit is contained in:
Kim Alvefur 2021-07-25 16:33:19 +02:00
parent 5d24efb239
commit 7711193903

View file

@ -57,7 +57,7 @@ local function create_simple_itemstore(node_config, node_name) --> util.cache li
return lib_pubsub.archive_itemstore(archive, max_items, nil, node_name);
end
function simple_broadcast(kind, node, jids, item, actor, node_obj, service)
function simple_broadcast(kind, node, jids, item, actor, node_obj, service) --luacheck: ignore 431/service
if node_obj then
if node_obj.config["notify_"..kind] == false then
return;