mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Foxed: Copy stanza type in reply for presence and message stanzas
This commit is contained in:
parent
e955346284
commit
97853af1a8
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ function iq(attr)
|
|||
end
|
||||
|
||||
function reply(orig)
|
||||
return stanza(orig.name, orig.attr and { to = orig.attr.from, from = orig.attr.to, id = orig.attr.id, type = ((orig.name == "iq" and "result") or nil) });
|
||||
return stanza(orig.name, orig.attr and { to = orig.attr.from, from = orig.attr.to, id = orig.attr.id, type = ((orig.name == "iq" and "result") or orig.attr.type) });
|
||||
end
|
||||
|
||||
function error_reply(orig, type, condition, message, clone)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue