mod_pubsub: Fix notification stanza type setting (fixes #1605)

This commit is contained in:
Kim Alvefur 2020-11-06 13:49:40 +01:00
parent 33776b811d
commit bb70517315

View file

@ -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 })