mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
stanza_router: Catch and log an error case which I don't think should happen (but sometimes seems to)
This commit is contained in:
parent
0b3fb9b027
commit
def653fa26
1 changed files with 4 additions and 1 deletions
|
@ -173,7 +173,10 @@ function core_route_stanza(origin, stanza)
|
|||
core_post_stanza(origin, stanza);
|
||||
elseif origin.type == "c2s" then
|
||||
-- Remote host
|
||||
if not hosts[from_host].disallow_s2s then
|
||||
if not hosts[from_host] then
|
||||
log("error", "No hosts[from_host] (please report): %s", tostring(stanza));
|
||||
end
|
||||
if (not hosts[from_host]) or (not hosts[from_host].disallow_s2s) then
|
||||
local xmlns = stanza.attr.xmlns;
|
||||
--stanza.attr.xmlns = "jabber:server";
|
||||
stanza.attr.xmlns = nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue