mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_pubsub: Fix notification stanza type setting (fixes #1605)
This commit is contained in:
parent
33776b811d
commit
bb70517315
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ function simple_broadcast(kind, node, jids, item, actor, node_obj)
|
|||
end
|
||||
|
||||
local id = new_id();
|
||||
local msg_type = node_obj and node_obj.config.message_type or "headline";
|
||||
local msg_type = node_obj and node_obj.config.notification_type or "headline";
|
||||
local message = st.message({ from = module.host, type = msg_type, id = id })
|
||||
:tag("event", { xmlns = xmlns_pubsub_event })
|
||||
:tag(kind, { node = node })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue