Foxed: Copy stanza type in reply for presence and message stanzas

This commit is contained in:
Waqas Hussain 2008-11-04 17:21:27 +05:00
parent e955346284
commit 97853af1a8

View file

@ -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)