aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/hidden.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/hidden.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/hidden.lib.lua')
-rw-r--r--plugins/muc/hidden.lib.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/muc/hidden.lib.lua b/plugins/muc/hidden.lib.lua
index e1821bd7..43521e14 100644
--- a/plugins/muc/hidden.lib.lua
+++ b/plugins/muc/hidden.lib.lua
@@ -15,7 +15,6 @@ local function set_hidden(room, hidden)
hidden = hidden and true or nil;
if get_hidden(room) == hidden then return false; end
room._data.hidden = hidden;
- room:save(true);
return true;
end