Let Google Hangouts contacts appear offline
[prosody.git] / plugins / mod_ping.lua
index c0ba61892e5be7ef8f1779335cb5193aeb611aeb..0bfcac667d96e332573c7a4be1efb38a46f0f37b 100644 (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