aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2025-03-23 19:59:45 +0100
committerKim Alvefur <zash@zash.se>2025-03-23 19:59:45 +0100
commitbe51e54c680fd94303a5e8681fd5340503976f0b (patch)
tree890c4bcbfb1b0ee02ce8e8c7a88ab23a8949781e /plugins
parent780b392d25ff067015f561fcb152bc01ac3ea650 (diff)
downloadprosody-be51e54c680fd94303a5e8681fd5340503976f0b.tar.gz
prosody-be51e54c680fd94303a5e8681fd5340503976f0b.zip
doap: Add XEP-0333origin/13.0
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_mam/mod_mam.lua1
-rw-r--r--plugins/muc/history.lib.lua1
2 files changed, 0 insertions, 2 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua
index ddceb013..4eb49819 100644
--- a/plugins/mod_mam/mod_mam.lua
+++ b/plugins/mod_mam/mod_mam.lua
@@ -364,7 +364,6 @@ local function should_store(stanza) --> boolean, reason: string
return true, "receipt";
end
if stanza:get_child(nil, "urn:xmpp:chat-markers:0") then
- -- XXX Experimental XEP
return true, "marker";
end
if stanza:get_child("x", "jabber:x:conference")
diff --git a/plugins/muc/history.lib.lua b/plugins/muc/history.lib.lua
index 8d8fcf14..f85decfb 100644
--- a/plugins/muc/history.lib.lua
+++ b/plugins/muc/history.lib.lua
@@ -218,7 +218,6 @@ module:hook("muc-message-is-historic", function (event)
return true, "encrypted";
end
if stanza:get_child(nil, "urn:xmpp:chat-markers:0") then
- -- XXX Experimental XEP
return true, "marker";
end
end, -1);