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 | a5f500f63dbbd0e4fc4be5ce440ba8b282b43dc5 (patch) | |
tree | ffc825d784865cbb92ffe8558df1c046c30ad4d7 | |
parent | 4b8e2cba01dd06b3c57b40d1a7f3a76bf6a0494e (diff) | |
download | prosody-a5f500f63dbbd0e4fc4be5ce440ba8b282b43dc5.tar.gz prosody-a5f500f63dbbd0e4fc4be5ce440ba8b282b43dc5.zip |
MUC: Fire muc-room-destroyed event when the last participant leaves a non-persistent room
-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 |