aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc
diff options
context:
space:
mode:
authorJC Brand <jc@opkode.com>2020-04-22 16:04:03 +0200
committerJC Brand <jc@opkode.com>2020-04-22 16:04:03 +0200
commit8da81e9160c093c79754eb7189a2a9fced8df82a (patch)
tree6e1c357d7f0e71a42c3512c8d7edb2360beb236c /plugins/muc
parent7d924c49ac817353980f9505ed83845ce0b8377c (diff)
downloadprosody-8da81e9160c093c79754eb7189a2a9fced8df82a.tar.gz
prosody-8da81e9160c093c79754eb7189a2a9fced8df82a.zip
Fixes #1533 Hats don't get sent out to own MUC user
Diffstat (limited to 'plugins/muc')
-rw-r--r--plugins/muc/muc.lib.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua
index d785a5a2..65ed8731 100644
--- a/plugins/muc/muc.lib.lua
+++ b/plugins/muc/muc.lib.lua
@@ -312,6 +312,7 @@ function room_mt:publicise_occupant_status(occupant, x, nick, actor, reason, pre
else
-- use their own presences as templates
for full_jid, pr in occupant:each_session() do
+ module:fire_event("muc-build-occupant-presence", { room = self, occupant = occupant, stanza = pr });
pr = st.clone(pr);
pr.attr.to = full_jid;
pr:add_child(self_x);