mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_ping: Ignore unused arguments [luacheck]
This commit is contained in:
parent
3ec060fc0c
commit
da6459157d
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ module:hook("iq-get/host/urn:xmpp:ping:ping", ping_handler);
|
|||
|
||||
local datetime = require "util.datetime".datetime;
|
||||
|
||||
function ping_command_handler (self, data, state)
|
||||
function ping_command_handler (self, data, state) -- luacheck: ignore 212
|
||||
local now = datetime();
|
||||
return { info = "Pong\n"..now, status = "completed" };
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue