mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_c2s: Fix fallback for missing session logger
This commit is contained in:
parent
e2321c4d37
commit
0f11cd3a54
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ function stream_callbacks.streamopened(session, attr)
|
||||||
end
|
end
|
||||||
session.version = tonumber(attr.version) or 0;
|
session.version = tonumber(attr.version) or 0;
|
||||||
session.streamid = uuid_generate();
|
session.streamid = uuid_generate();
|
||||||
(session.log or session)("debug", "Client sent opening <stream:stream> to %s", session.host);
|
(session.log or log)("debug", "Client sent opening <stream:stream> to %s", session.host);
|
||||||
|
|
||||||
if not hosts[session.host] or not hosts[session.host].modules.c2s then
|
if not hosts[session.host] or not hosts[session.host].modules.c2s then
|
||||||
-- We don't serve this host...
|
-- We don't serve this host...
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue