diff options
author | Kim Alvefur <zash@zash.se> | 2017-02-20 00:38:32 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-02-20 00:38:32 +0100 |
commit | 7e36855e9b799d130dd75b5b8f212a8b79f2c8da (patch) | |
tree | 9bcdfe827a36b88ac839f39e1c6363ea7e33f0fb /plugins | |
parent | f6b5f2631e8d4ce38d1de8763a7eccbe4f6ff3d9 (diff) | |
download | prosody-7e36855e9b799d130dd75b5b8f212a8b79f2c8da.tar.gz prosody-7e36855e9b799d130dd75b5b8f212a8b79f2c8da.zip |
mod_mam: Fix typo in comment
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index 5e09ec89..23106ba8 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -373,7 +373,7 @@ end -- Stanzas sent by local clients module:hook("pre-message/bare", c2s_message_handler, 0); module:hook("pre-message/full", c2s_message_handler, 0); --- Stanszas to local clients +-- Stanzas to local clients module:hook("message/bare", message_handler, 0); module:hook("message/full", message_handler, 0); |