Fix the reversed to/from on the final db:result. Fixes M-Link and Gmail. Thanks dwd!!

This commit is contained in:
Matthew Wild 2008-11-19 23:18:12 +00:00
parent 5a46bff5b2
commit ccb65fee13

View file

@ -59,7 +59,7 @@ add_handler({ "s2sout_unauthed", "s2sout" }, "verify", xmlns_dialback,
log("warn", "Incoming s2s session %s was closed in the meantime, so we can't notify it of the db result", tostring(origin.dialback_verifying):match("%w+$"));
else
origin.dialback_verifying.sends2s(format("<db:result from='%s' to='%s' id='%s' type='%s'>%s</db:result>",
attr.from, attr.to, attr.id, valid, origin.dialback_verifying.dialback_key));
attr.to, attr.from, attr.id, valid, origin.dialback_verifying.dialback_key));
end
end
end);