mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_pubsub: Don't attempt to use server actor as publisher (fixes #1723)
This commit is contained in:
parent
ff2a6d764e
commit
ea9ea67911
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ function simple_broadcast(kind, node, jids, item, actor, node_obj, service) --lu
|
|||
end
|
||||
if not expose_publisher then
|
||||
item.attr.publisher = nil;
|
||||
elseif not item.attr.publisher then
|
||||
elseif not item.attr.publisher and actor ~= true then
|
||||
item.attr.publisher = service.config.normalize_jid(actor);
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue