mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_ping: Use util.datetime to generate timestamp in ad-hoc command response (instead of the current use of os.date, which doesn't take timezone into account).
This commit is contained in:
parent
30be4fa585
commit
bd95b3ba7b
1 changed files with 3 additions and 1 deletions
|
@ -22,8 +22,10 @@ module:hook("iq/host/urn:xmpp:ping:ping", ping_handler);
|
|||
|
||||
-- Ad-hoc command
|
||||
|
||||
local datetime = require "util.datetime".datetime;
|
||||
|
||||
function ping_command_handler (self, data, state)
|
||||
local now = os.date("%Y-%m-%dT%X");
|
||||
local now = datetime();
|
||||
return { info = "Pong\n"..now, status = "completed" };
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue