diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-05-30 21:02:09 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-05-30 21:02:09 +0100 |
commit | ea00ddc7d6d047a6f71e5c6d2d83747693c80afa (patch) | |
tree | 294d03c60d7639a96851db574291745f289d3cf2 | |
parent | a7c774090adebc7550435df3e7df4a14c26a83ea (diff) | |
download | prosody-ea00ddc7d6d047a6f71e5c6d2d83747693c80afa.tar.gz prosody-ea00ddc7d6d047a6f71e5c6d2d83747693c80afa.zip |
MUC: Fix error logged when no persistent rooms present
-rw-r--r-- | plugins/muc/mod_muc.lua | 7 |
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"); |