aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-02-14 18:51:41 +0100
committerKim Alvefur <zash@zash.se>2017-02-14 18:51:41 +0100
commit293402a3388b91bbb51d0043718cca5a3e822f06 (patch)
treed10a50d6ae423462a63e615bc08e3cff8f436536 /plugins
parentc5272aa642c3a56a19813ab909165e7dc56ba101 (diff)
downloadprosody-293402a3388b91bbb51d0043718cca5a3e822f06.tar.gz
prosody-293402a3388b91bbb51d0043718cca5a3e822f06.zip
mod_mam: Advertise Stanza ID support (XEP-0359) (thanks iNPUTmice)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_mam/mod_mam.lua1
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);