mod_pubsub: Don't attempt to use server actor as publisher (fixes #1723)

This commit is contained in:
Matthew Wild 2022-03-21 12:36:20 +00:00
parent ff2a6d764e
commit ea9ea67911

View file

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