mod_c2s: Fix error on role change on Components (thanks Menel)

This commit is contained in:
Kim Alvefur 2024-02-17 19:07:57 +01:00
parent 7be4e2fd31
commit 2ef771fff8

View file

@ -252,6 +252,9 @@ end
local function disconnect_user_sessions(reason, leave_resource)
return function (event)
local username, host, resource = event.username, event.host, event.resource;
if not (hosts[host] and hosts[host].type == "local") then
return -- not a local VirtualHost so no sessions
end
local user = hosts[host].sessions[username];
if user and user.sessions then
for r, session in pairs(user.sessions) do