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 | ab16d298a1ee0c27f2a7bb9b74f9071983244774 (patch) | |
tree | 12414d30b015900a65b710421a425448f5f15e81 /plugins | |
parent | 3e2beb6f79855994744222adf371b3c5be7c9aa4 (diff) | |
download | prosody-ab16d298a1ee0c27f2a7bb9b74f9071983244774.tar.gz prosody-ab16d298a1ee0c27f2a7bb9b74f9071983244774.zip |
mod_muc/muc.lib: Remove is_anonymous from event (fix for ec57067c1e0d)
Diffstat (limited to 'plugins')
-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) |