mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_pep: Respect settings for which kinds of notifications to send
This commit is contained in:
parent
533cefaaf1
commit
8121e242b0
1 changed files with 6 additions and 1 deletions
|
@ -123,7 +123,12 @@ end
|
|||
|
||||
local function get_broadcaster(username)
|
||||
local user_bare = jid_join(username, host);
|
||||
local function simple_broadcast(kind, node, jids, item)
|
||||
local function simple_broadcast(kind, node, jids, item, _, node_obj)
|
||||
if node_obj then
|
||||
if node_obj.config["notify_"..kind] == false then
|
||||
return;
|
||||
end
|
||||
end
|
||||
if kind == "retract" then
|
||||
kind = "items"; -- XEP-0060 signals retraction in an <items> container
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue