mod_dialback: Fix logic bug - we should have both a to and from at this point

This commit is contained in:
Matthew Wild 2012-05-11 01:54:36 +01:00
parent 703e7dde18
commit 1d8cbe75d9

View file

@ -91,7 +91,7 @@ module:hook("stanza/jabber:server:dialback:result", function(event)
origin.to_host = nameprep(attr.to);
end
if not origin.from_host and not origin.to_host then
if not origin.from_host or not origin.to_host then
origin.log("debug", "Improper addressing supplied, no to or from?");
origin:close("improper-addressing");
end