Changeset

8820:1348a931528a

Merge 0.10->trunk
author Kim Alvefur <zash@zash.se>
date Tue, 22 May 2018 22:25:59 +0200
parents 8818:c96c00dc424b (current diff) 8819:780d728f969f (diff)
children 8821:c1014eac2a1a
files plugins/mod_c2s.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_c2s.lua	Tue May 22 21:22:51 2018 +0200
+++ b/plugins/mod_c2s.lua	Tue May 22 22:25:59 2018 +0200
@@ -172,7 +172,7 @@
 		function session.send() return false; end
 
 		local reason_text = (reason and (reason.name or reason.text or reason.condition)) or reason;
-		session.log("debug", "c2s stream for %s closed: %s", session.full_jid or ("<"..session.ip..">"), reason_text or "session closed");
+		session.log("debug", "c2s stream for %s closed: %s", session.full_jid or session.ip or "<unknown>", reason_text or "session closed");
 
 		-- Authenticated incoming stream may still be sending us stanzas, so wait for </stream:stream> from remote
 		local conn = session.conn;