diff options
author | Kim Alvefur <zash@zash.se> | 2018-07-02 23:51:19 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-07-02 23:51:19 +0200 |
commit | 9e20aaa387ffad342a896b5bf482006c79925d4c (patch) | |
tree | 9c3bcea310b376fb91f16681d930bcc5f9f28e4c | |
parent | c176da571c82d403c80a28d788ab6882d1260c56 (diff) | |
download | prosody-9e20aaa387ffad342a896b5bf482006c79925d4c.tar.gz prosody-9e20aaa387ffad342a896b5bf482006c79925d4c.zip |
mod_ping: Fix typo
-rw-r--r-- | plugins/mod_ping.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_ping.lua b/plugins/mod_ping.lua index 09f78efa..33f05197 100644 --- a/plugins/mod_ping.lua +++ b/plugins/mod_ping.lua @@ -26,7 +26,7 @@ function ping_command_handler (self, data, state) -- luacheck: ignore 212 return { info = "Pong\n"..now, status = "completed" }; end -module:depend "adhoc"; +module:depends "adhoc"; local adhoc_new = module:require "adhoc".new; local descriptor = adhoc_new("Ping", "ping", ping_command_handler); module:add_item ("adhoc", descriptor); |