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 | 293402a3388b91bbb51d0043718cca5a3e822f06 (patch) | |
tree | d10a50d6ae423462a63e615bc08e3cff8f436536 /plugins/mod_mam | |
parent | c5272aa642c3a56a19813ab909165e7dc56ba101 (diff) | |
download | prosody-293402a3388b91bbb51d0043718cca5a3e822f06.tar.gz prosody-293402a3388b91bbb51d0043718cca5a3e822f06.zip |
mod_mam: Advertise Stanza ID support (XEP-0359) (thanks iNPUTmice)
Diffstat (limited to 'plugins/mod_mam')
-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); |