mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_c2s: Fix error on role change on Components (thanks Menel)
This commit is contained in:
parent
7be4e2fd31
commit
2ef771fff8
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue