doap: Add XEP-0333

This commit is contained in:
Kim Alvefur 2025-03-23 19:59:45 +01:00
parent 780b392d25
commit be51e54c68
3 changed files with 9 additions and 2 deletions

View file

@ -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")

View file

@ -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);