diff options
-rw-r--r-- | doc/doap.xml | 4 | ||||
-rw-r--r-- | plugins/muc/history.lib.lua | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/doap.xml b/doc/doap.xml index 7e9ef815..0b507236 100644 --- a/doc/doap.xml +++ b/doc/doap.xml @@ -187,6 +187,10 @@ <implements> <xmpp:SupportedXep> <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0091.html"/> + <xmpp:version>1.4</xmpp:version> + <xmpp:since>0.1</xmpp:since> + <xmpp:until>0.12</xmpp:until> + <xmpp:note>Gone from offline messages in 0.10.0, gone from MUC in 0.12</xmpp:note> </xmpp:SupportedXep> </implements> <implements> diff --git a/plugins/muc/history.lib.lua b/plugins/muc/history.lib.lua index 1b7167af..fdf65365 100644 --- a/plugins/muc/history.lib.lua +++ b/plugins/muc/history.lib.lua @@ -182,9 +182,6 @@ module:hook("muc-add-history", function(event) stanza:tag("delay", { -- XEP-0203 xmlns = "urn:xmpp:delay", from = room.jid, stamp = stamp }):up(); - stanza:tag("x", { -- XEP-0091 (deprecated) - xmlns = "jabber:x:delay", from = room.jid, stamp = datetime.legacy() - }):up(); local entry = { stanza = stanza, timestamp = ts }; table.insert(history, entry); while #history > get_historylength(room) do table.remove(history, 1) end |