diff options
author | Kim Alvefur <zash@zash.se> | 2017-02-14 18:51:41 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-02-14 18:51:41 +0100 |
commit | 0d09c3499df3a314e2fcd6495d495fb69d30809f (patch) | |
tree | d10a50d6ae423462a63e615bc08e3cff8f436536 | |
parent | 9439bf08cb78d9487400774d601c16773109d329 (diff) | |
download | prosody-0d09c3499df3a314e2fcd6495d495fb69d30809f.tar.gz prosody-0d09c3499df3a314e2fcd6495d495fb69d30809f.zip |
mod_mam: Advertise Stanza ID support (XEP-0359) (thanks iNPUTmice)
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index df555a35..81b0690c 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -366,5 +366,6 @@ module:hook("message/full", message_handler, 0); module:hook("account-disco-info", function(event) (event.reply or event.stanza):tag("feature", {var=xmlns_mam}):up(); + (event.reply or event.stanza):tag("feature", {var=xmlns_st_id}):up(); end); |