aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-01-18 20:14:05 +0100
committerKim Alvefur <zash@zash.se>2014-01-18 20:14:05 +0100
commit5b7954b21ff39de538b6303c7308f6e0f07389d1 (patch)
treeffc825d784865cbb92ffe8558df1c046c30ad4d7 /plugins/muc
parent08d11ab447a66b2a34cc82ebe286e8a3d563e301 (diff)
downloadprosody-5b7954b21ff39de538b6303c7308f6e0f07389d1.tar.gz
prosody-5b7954b21ff39de538b6303c7308f6e0f07389d1.zip
MUC: Fire muc-room-destroyed event when the last participant leaves a non-persistent room
Diffstat (limited to 'plugins/muc')
-rw-r--r--plugins/muc/mod_muc.lua1
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