aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_mam/mod_mam.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-04-21 23:06:55 +0200
committerKim Alvefur <zash@zash.se>2020-04-21 23:06:55 +0200
commit62b575639d000dcf172caa1cfd089ba12674c6dc (patch)
tree44804d84a5444886f3c1ce262647170c734a9204 /plugins/mod_mam/mod_mam.lua
parentef0b90ff2393da021d6ac0f101aaba533a4825d9 (diff)
downloadprosody-62b575639d000dcf172caa1cfd089ba12674c6dc.tar.gz
prosody-62b575639d000dcf172caa1cfd089ba12674c6dc.zip
mod_mam: Fix typo in comment
If it is with a body then it execution does not get this far
Diffstat (limited to 'plugins/mod_mam/mod_mam.lua')
-rw-r--r--plugins/mod_mam/mod_mam.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua
index 69282857..6d493131 100644
--- a/plugins/mod_mam/mod_mam.lua
+++ b/plugins/mod_mam/mod_mam.lua
@@ -288,7 +288,7 @@ local function should_store(stanza) --> boolean, reason: string
return true, "body";
end
if stanza:get_child("subject") then
- -- XXX Who would send a message with a subject but with a body?
+ -- XXX Who would send a message with a subject but without a body?
return true, "subject";
end
if stanza:get_child("encryption", "urn:xmpp:eme:0") then