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
commite494fc201fa003eedcacdb8f172177247216b1cb (patch)
treeffc825d784865cbb92ffe8558df1c046c30ad4d7 /plugins/muc
parent21f6eb82cfd1ee4070cb7658f753b07478dac5a9 (diff)
downloadprosody-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/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