mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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 ts = gettime();
|
||||||
local stamp = datetime.datetime(ts);
|
local stamp = datetime.datetime(ts);
|
||||||
stanza:tag("delay", { -- XEP-0203
|
stanza:tag("delay", { -- XEP-0203
|
||||||
xmlns = "urn:xmpp:delay", from = module.host, stamp = stamp
|
xmlns = "urn:xmpp:delay", from = room.jid, stamp = stamp
|
||||||
}):up();
|
}):up();
|
||||||
stanza:tag("x", { -- XEP-0091 (deprecated)
|
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();
|
}):up();
|
||||||
local entry = { stanza = stanza, timestamp = ts };
|
local entry = { stanza = stanza, timestamp = ts };
|
||||||
table.insert(history, entry);
|
table.insert(history, entry);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue