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 | 546340fe32726cdc4b745635166b577a7dfdd0eb (patch) | |
tree | 9bcdfe827a36b88ac839f39e1c6363ea7e33f0fb /plugins/mod_mam | |
parent | 42fca51e2687b452af9cd812b5c9e0781318e5e2 (diff) | |
download | prosody-546340fe32726cdc4b745635166b577a7dfdd0eb.tar.gz prosody-546340fe32726cdc4b745635166b577a7dfdd0eb.zip |
mod_mam: Fix typo in comment
Diffstat (limited to 'plugins/mod_mam')
-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); |