mod_cron: Rename variable to fix shadowing (#luacheck)

This commit is contained in:
Matthew Wild 2023-11-30 11:42:52 +00:00
parent 2524736225
commit 090f4830bb

View file

@ -82,7 +82,7 @@ module:add_item("shell-command", {
name = "tasks";
desc = "View registered tasks";
args = {};
handler = function (self, host)
handler = function (self, filter_host)
local format_table = require "prosody.util.human.io".table;
local it = require "util.iterators";
local row = format_table({
@ -94,7 +94,7 @@ module:add_item("shell-command", {
}, self.session.width);
local print = self.session.print;
print(row());
for host in it.sorted_pairs(host and { [host]=true } or active_hosts) do
for host in it.sorted_pairs(filter_host and { [filter_host]=true } or active_hosts) do
for _, task in ipairs(module:context(host):get_host_items("task")) do
print(row { host, task.id, task.name, task.when, task.last and os.date("%Y-%m-%d %R:%S", task.last) or "never" });
--self.session.print(require "util.serialization".serialize(task, "debug"));