diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-02-14 13:08:45 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-02-14 13:08:45 +0000 |
commit | d71473df3b145bf3e17c0c9adef3bd7570120b05 (patch) | |
tree | 15907b2079e4f0667b13d39fb66a88542ce83e8e /plugins/muc | |
parent | ed5dfc1a624b74e8a93fc896f6b3238be4256607 (diff) | |
download | prosody-d71473df3b145bf3e17c0c9adef3bd7570120b05.tar.gz prosody-d71473df3b145bf3e17c0c9adef3bd7570120b05.zip |
MUC: Use new XEP namespace for hats by default
Revert with muc_hats_compat = true in the config if necessary.
Diffstat (limited to 'plugins/muc')
-rw-r--r-- | plugins/muc/hats.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/hats.lib.lua b/plugins/muc/hats.lib.lua index 7eb71eb4..7ccf194e 100644 --- a/plugins/muc/hats.lib.lua +++ b/plugins/muc/hats.lib.lua @@ -1,7 +1,7 @@ local st = require "prosody.util.stanza"; local muc_util = module:require "muc/util"; -local hats_compat = module:get_option_boolean("muc_hats_compat", true); -- COMPAT for pre-XEP namespace, TODO reconsider default for next release +local hats_compat = module:get_option_boolean("muc_hats_compat", false); -- COMPAT for pre-XEP namespace local xmlns_hats_legacy = "xmpp:prosody.im/protocol/hats:1"; local xmlns_hats = "urn:xmpp:hats:0"; |