mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_pubsub: Use the 'pubsub#type' setting to pick summary generator
Allows using different ones even if multiple semantically different formats share the same root element xmlns, e.g. generic Atom and XEP-0277 entries.
This commit is contained in:
parent
c0be43a098
commit
55da054c9b
1 changed files with 2 additions and 1 deletions
|
@ -102,7 +102,8 @@ function simple_broadcast(kind, node, jids, item, actor, node_obj, service) --lu
|
|||
local summary;
|
||||
if item and item.tags[1] then
|
||||
local payload = item.tags[1];
|
||||
summary = module:fire_event("pubsub-summary/"..payload.attr.xmlns, {
|
||||
local payload_type = node_obj and node_obj.config.payload_type or payload.attr.xmlns;
|
||||
summary = module:fire_event("pubsub-summary/"..payload_type, {
|
||||
kind = kind, node = node, jids = jids, actor = actor, item = item, payload = payload,
|
||||
});
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue