aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-05-30 21:02:09 +0100
committerMatthew Wild <mwild1@gmail.com>2018-05-30 21:02:09 +0100
commit6186bd57f491ba485718997dd309f6b178f00d59 (patch)
tree294d03c60d7639a96851db574291745f289d3cf2 /plugins
parent996ff6d5417afdc3892a11fbfe51c85446c803ac (diff)
downloadprosody-6186bd57f491ba485718997dd309f6b178f00d59.tar.gz
prosody-6186bd57f491ba485718997dd309f6b178f00d59.zip
MUC: Fix error logged when no persistent rooms present
Diffstat (limited to 'plugins')
-rw-r--r--plugins/muc/mod_muc.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua
index 7304b5b1..0f58bfbc 100644
--- a/plugins/muc/mod_muc.lua
+++ b/plugins/muc/mod_muc.lua
@@ -39,8 +39,11 @@ local rooms = rooms;
local persistent_rooms_storage = module:open_store("persistent");
local persistent_rooms, err = persistent_rooms_storage:get();
if not persistent_rooms then
- module:log("error", "Error loading list of persistent rooms from storage. Reload mod_muc or restart to recover.");
- assert(not err, err);
+ if err then
+ module:log("error", "Error loading list of persistent rooms from storage. Reload mod_muc or restart to recover.");
+ error("Storage error: "..err);
+ end
+ module:log("debug", "No persistent rooms found in the database");
persistent_rooms = {};
end
local room_configs = module:open_store("config");