diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-15 11:50:55 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-15 11:50:55 +0200 |
commit | 45e055d26a8133358518ba4f2c6676a15b2b1c75 (patch) | |
tree | 9f885da1a933ab13e2fa3c18bd359e8c240f274b /plugins/muc/persistent.lib.lua | |
parent | fd375a83984c0faea37365dd9c3d7ef2d2ec8b47 (diff) | |
download | prosody-45e055d26a8133358518ba4f2c6676a15b2b1c75.tar.gz prosody-45e055d26a8133358518ba4f2c6676a15b2b1c75.zip |
MUC: Save room to storage once after form processing, not in each individual setter
Diffstat (limited to 'plugins/muc/persistent.lib.lua')
-rw-r--r-- | plugins/muc/persistent.lib.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/muc/persistent.lib.lua b/plugins/muc/persistent.lib.lua index 60493e06..773509b5 100644 --- a/plugins/muc/persistent.lib.lua +++ b/plugins/muc/persistent.lib.lua @@ -15,7 +15,6 @@ local function set_persistent(room, persistent) persistent = persistent and true or nil; if get_persistent(room) == persistent then return false; end room._data.persistent = persistent; - room:save(true); return true; end |