aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/persistent.lib.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-04-15 11:50:55 +0200
committerKim Alvefur <zash@zash.se>2016-04-15 11:50:55 +0200
commit45e055d26a8133358518ba4f2c6676a15b2b1c75 (patch)
tree9f885da1a933ab13e2fa3c18bd359e8c240f274b /plugins/muc/persistent.lib.lua
parentfd375a83984c0faea37365dd9c3d7ef2d2ec8b47 (diff)
downloadprosody-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.lua1
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