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:
Waqas Hussain 2011-01-29 04:42:05 +05:00
parent 30be4fa585
commit bd95b3ba7b

View file

@ -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