aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/persistent.lib.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-04-14 21:23:09 +0200
committerKim Alvefur <zash@zash.se>2016-04-14 21:23:09 +0200
commitfd375a83984c0faea37365dd9c3d7ef2d2ec8b47 (patch)
treeaf82934d908985673b978521766f7f30030b771b /plugins/muc/persistent.lib.lua
parent92f1afc3f55f9c879f1a4df1b65db70659087f90 (diff)
downloadprosody-fd375a83984c0faea37365dd9c3d7ef2d2ec8b47.tar.gz
prosody-fd375a83984c0faea37365dd9c3d7ef2d2ec8b47.zip
MUC: Provide a noop stub room:save() method
Diffstat (limited to 'plugins/muc/persistent.lib.lua')
-rw-r--r--plugins/muc/persistent.lib.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/persistent.lib.lua b/plugins/muc/persistent.lib.lua
index a72bcbb5..60493e06 100644
--- a/plugins/muc/persistent.lib.lua
+++ b/plugins/muc/persistent.lib.lua
@@ -15,7 +15,7 @@ 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;
- if room.save then room:save(true); end
+ room:save(true);
return true;
end