diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-07-25 18:34:43 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-07-25 18:34:43 +0100 |
commit | 6f4e24a0fc86a839792d0dda5a99746179231fd0 (patch) | |
tree | 12414d30b015900a65b710421a425448f5f15e81 /plugins/muc/muc.lib.lua | |
parent | 4aba920b7e87b05c8ed6750149bf0ff6a9a65ab8 (diff) | |
download | prosody-6f4e24a0fc86a839792d0dda5a99746179231fd0.tar.gz prosody-6f4e24a0fc86a839792d0dda5a99746179231fd0.zip |
mod_muc/muc.lib: Remove is_anonymous from event (fix for ec57067c1e0d)
Diffstat (limited to 'plugins/muc/muc.lib.lua')
-rw-r--r-- | plugins/muc/muc.lib.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index 1d95b6f8..041187e5 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -203,8 +203,8 @@ function room_mt:publicise_occupant_status(occupant, base_x, nick, actor, reason -- Fire event (before full_p and anon_p are created) module:fire_event("muc-broadcast-presence", { room = self; stanza = base_presence; x = base_x; - occupant = occupant; is_anonymous = is_anonymous; - nick = nick; actor = actor; reason = reason; + occupant = occupant; nick = nick; actor = actor; + reason = reason; }); local function get_presence(is_anonymous) |