mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_blocklist: Don't send unavailable presence from unavailable sessions when blocking a contact
This commit is contained in:
parent
a5013be8b5
commit
d0cb0b35d5
1 changed files with 3 additions and 1 deletions
|
@ -149,7 +149,9 @@ local function edit_blocklist(event)
|
|||
for jid, in_roster in pairs(new) do
|
||||
if not blocklist[jid] and in_roster and sessions[username] then
|
||||
for _, session in pairs(sessions[username].sessions) do
|
||||
module:send(st.presence({ type = "unavailable", to = jid, from = session.full_jid }));
|
||||
if session.presence then
|
||||
module:send(st.presence({ type = "unavailable", to = jid, from = session.full_jid }));
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue