diff options
author | Kim Alvefur <zash@zash.se> | 2020-05-08 22:39:01 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-05-08 22:39:01 +0200 |
commit | d2ea46dcc099fa29d32ece67534dd2f6f0684960 (patch) | |
tree | b94e051eb0a67d0e5a812e3dc86cd86a31962f3e | |
parent | b9aa2ccc771ae9bcbaa3d3b2982309629422af79 (diff) | |
download | prosody-d2ea46dcc099fa29d32ece67534dd2f6f0684960.tar.gz prosody-d2ea46dcc099fa29d32ece67534dd2f6f0684960.zip |
mod_muc_mam: Fix missing advertising of XEP-0359, fixes #1547
-rw-r--r-- | plugins/mod_muc_mam.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_muc_mam.lua b/plugins/mod_muc_mam.lua index 8216e2e6..88018f72 100644 --- a/plugins/mod_muc_mam.lua +++ b/plugins/mod_muc_mam.lua @@ -395,6 +395,7 @@ module:add_feature(xmlns_mam); module:hook("muc-disco#info", function(event) event.reply:tag("feature", {var=xmlns_mam}):up(); + event.reply:tag("feature", {var=xmlns_st_id}):up(); end); -- Cleanup |