mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
MUC: Fix delay@from to be room JID (fixes #1416)
This commit is contained in:
parent
8b12f4ace1
commit
a280be7c08
1 changed files with 2 additions and 2 deletions
|
@ -178,10 +178,10 @@ module:hook("muc-add-history", function(event)
|
|||
local ts = gettime();
|
||||
local stamp = datetime.datetime(ts);
|
||||
stanza:tag("delay", { -- XEP-0203
|
||||
xmlns = "urn:xmpp:delay", from = module.host, stamp = stamp
|
||||
xmlns = "urn:xmpp:delay", from = room.jid, stamp = stamp
|
||||
}):up();
|
||||
stanza:tag("x", { -- XEP-0091 (deprecated)
|
||||
xmlns = "jabber:x:delay", from = module.host, stamp = datetime.legacy()
|
||||
xmlns = "jabber:x:delay", from = room.jid, stamp = datetime.legacy()
|
||||
}):up();
|
||||
local entry = { stanza = stanza, timestamp = ts };
|
||||
table.insert(history, entry);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue