mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_admin_shell: Fix error due to float passed to os.date in Lua 5.3
Thanks Martin
This commit is contained in:
parent
6264bd48c1
commit
753836c876
1 changed files with 4 additions and 4 deletions
|
@ -1273,11 +1273,11 @@ function def_env.debug:timers()
|
|||
print("-- util.timer");
|
||||
for i, id in ipairs(h.ids) do
|
||||
if not params[id] then
|
||||
print(os.date("%F %T", h.priorities[i]), h.items[id]);
|
||||
print(os.date("%F %T", math.floor(h.priorities[i])), h.items[id]);
|
||||
elseif not params[id].callback then
|
||||
print(os.date("%F %T", h.priorities[i]), h.items[id], unpack(params[id]));
|
||||
print(os.date("%F %T", math.floor(h.priorities[i])), h.items[id], unpack(params[id]));
|
||||
else
|
||||
print(os.date("%F %T", h.priorities[i]), params[id].callback, unpack(params[id]));
|
||||
print(os.date("%F %T", math.floor(h.priorities[i])), params[id].callback, unpack(params[id]));
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -1293,7 +1293,7 @@ function def_env.debug:timers()
|
|||
if h then
|
||||
local next_time = h:peek();
|
||||
if next_time then
|
||||
return true, os.date("Next event at %F %T (in %%.6fs)", next_time):format(next_time - time.now());
|
||||
return true, os.date("Next event at %F %T (in %%.6fs)", math.floor(next_time)):format(next_time - time.now());
|
||||
end
|
||||
end
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue