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 | ed4cc77c7665c6ceca3c15134286bf7984d1446d (patch) | |
tree | b94e051eb0a67d0e5a812e3dc86cd86a31962f3e /plugins | |
parent | e0a9efae01f9b580a5da8612c9fb88fa1cff5afe (diff) | |
download | prosody-ed4cc77c7665c6ceca3c15134286bf7984d1446d.tar.gz prosody-ed4cc77c7665c6ceca3c15134286bf7984d1446d.zip |
mod_muc_mam: Fix missing advertising of XEP-0359, fixes #1547
Diffstat (limited to 'plugins')
-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 |