mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
Don't error if the original s2s connection has closed before we get the dialback result
This commit is contained in:
parent
43c5342160
commit
761c52771a
1 changed files with 6 additions and 2 deletions
|
@ -55,8 +55,12 @@ add_handler({ "s2sout_unauthed", "s2sout" }, "verify", xmlns_dialback,
|
|||
log("warn", "dialback for "..(origin.dialback_verifying.from_host or "(unknown)").." failed");
|
||||
valid = "invalid";
|
||||
end
|
||||
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));
|
||||
if not origin.dialback_verifying.sends2s then
|
||||
log("warn", "Incoming s2s session was closed in the meantime, so we can't notify it of the db result");
|
||||
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));
|
||||
end
|
||||
end
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue