diff options
author | Kim Alvefur <zash@zash.se> | 2018-07-11 03:28:45 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-07-11 03:28:45 +0200 |
commit | 26c0e9a21a4ae855e7355df2c8a5fbe0442b2b19 (patch) | |
tree | 788095123863dabb72a1fa5dc1ae59a4132d1b79 | |
parent | 2aeae813e21cf7e0ac5d5945cb31e33422a1c1b5 (diff) | |
download | prosody-26c0e9a21a4ae855e7355df2c8a5fbe0442b2b19.tar.gz prosody-26c0e9a21a4ae855e7355df2c8a5fbe0442b2b19.zip |
MUC: Unset persistence of destroyed rooms later in event chain
-rw-r--r-- | plugins/muc/persistent.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/persistent.lib.lua b/plugins/muc/persistent.lib.lua index abceafe1..4bc61930 100644 --- a/plugins/muc/persistent.lib.lua +++ b/plugins/muc/persistent.lib.lua @@ -39,7 +39,7 @@ end); module:hook("muc-room-destroyed", function(event) set_persistent(event.room, false); -end); +end, -100); return { get = get_persistent; |