Changeset

13795:99ba0b89e531

Merge 13.0->trunk
author Matthew Wild <mwild1@gmail.com>
date Mon, 31 Mar 2025 16:43:06 +0100
parents 13793:883edb6f614a (current diff) 13794:471b676e64eb (diff)
children 13797:c0ef5d089e76
files
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/util/adminstream.lua	Mon Mar 31 12:21:22 2025 +0100
+++ b/util/adminstream.lua	Mon Mar 31 16:43:06 2025 +0100
@@ -82,7 +82,8 @@
 
 local function session_close(session, reason)
 	local log = session.log or log;
-	if session.conn then
+	local conn = session.conn;
+	if conn then
 		if session.notopen then
 			session:open_stream();
 		end
@@ -115,7 +116,6 @@
 		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;
 		if reason_text == nil and not session.notopen and session.type == "c2s" then
 			-- Grace time to process data from authenticated cleanly-closed stream
 			add_task(stream_close_timeout, function ()