mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
MUC: Remove XEP-0091: Legacy Delayed Delivery
Why do we still include this? Deprecated in 2007, obsoleted in 2009. Removes redundant timestamp that nobody should be looking at since many years and a redundant copy of the room JID.
This commit is contained in:
parent
8f059290a7
commit
6b306e3313
2 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue