Software /
code /
prosody
Changeset
7346:4ea5ce5efff8
MUC: Spread event tables over multiple lines
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 08 Apr 2016 17:53:49 +0200 |
parents | 7343:1da5a710848d |
children | 7347:795a95258292 |
files | plugins/muc/muc.lib.lua |
diffstat | 1 files changed, 18 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/muc/muc.lib.lua Thu Apr 07 13:36:58 2016 +0200 +++ b/plugins/muc/muc.lib.lua Fri Apr 08 17:53:49 2016 +0200 @@ -491,7 +491,11 @@ self:publicise_occupant_status(orig_occupant, orig_x, dest_nick); if is_last_orig_session then - module:fire_event("muc-occupant-left", {room = self; nick = orig_occupant.nick; occupant = orig_occupant;}); + module:fire_event("muc-occupant-left", { + room = self; + nick = orig_occupant.nick; + occupant = orig_occupant; + }); end end @@ -529,9 +533,20 @@ if orig_occupant == nil then if is_first_dest_session then - module:fire_event("muc-occupant-joined", {room = self; nick = dest_occupant.nick; occupant = dest_occupant;}); + module:fire_event("muc-occupant-joined", { + room = self; + nick = dest_occupant.nick; + occupant = dest_occupant; + }); end - module:fire_event("muc-occupant-session-new", {room = self; nick = dest_occupant.nick; occupant = dest_occupant; stanza = stanza; jid = real_jid;}); + module:fire_event("muc-occupant-session-new", { + room = self; + nick = dest_occupant.nick; + occupant = dest_occupant; + stanza = stanza; + origin = origin; + jid = real_jid; + }); end end elseif type ~= 'result' then -- bad type