diff options
author | Kim Alvefur <zash@zash.se> | 2014-01-18 20:14:05 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-01-18 20:14:05 +0100 |
commit | e494fc201fa003eedcacdb8f172177247216b1cb (patch) | |
tree | ffc825d784865cbb92ffe8558df1c046c30ad4d7 /plugins | |
parent | 21f6eb82cfd1ee4070cb7658f753b07478dac5a9 (diff) | |
download | prosody-e494fc201fa003eedcacdb8f172177247216b1cb.tar.gz prosody-e494fc201fa003eedcacdb8f172177247216b1cb.zip |
MUC: Fire muc-room-destroyed event when the last participant leaves a non-persistent room
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/muc/mod_muc.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index edebf070..6e86ab73 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -163,6 +163,7 @@ function stanza_handler(event) if room then room:handle_stanza(origin, stanza); if not next(room._occupants) and not persistent_rooms[room.jid] then -- empty, non-persistent room + module:fire_event("muc-room-destroyed", { room = room }); rooms[bare] = nil; -- discard room end else |