diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-12 02:16:24 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-12 02:16:24 +0200 |
commit | 4b084f8f07cda7eda6755f65e9c1fc96c2fa0113 (patch) | |
tree | a76fdc5effa66957d7b4daed2f3220ff37dbdb3d | |
parent | 7aa9b58533e1eb64be42c247d2736fc1e8864ff1 (diff) | |
download | prosody-4b084f8f07cda7eda6755f65e9c1fc96c2fa0113.tar.gz prosody-4b084f8f07cda7eda6755f65e9c1fc96c2fa0113.zip |
mod_c2s: Fix fallback for missing session logger
-rw-r--r-- | plugins/mod_c2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_c2s.lua b/plugins/mod_c2s.lua index 3816a262..8e31a968 100644 --- a/plugins/mod_c2s.lua +++ b/plugins/mod_c2s.lua @@ -71,7 +71,7 @@ function stream_callbacks.streamopened(session, attr) end session.version = tonumber(attr.version) or 0; 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 -- We don't serve this host... |