# HG changeset patch # User Emmanuel Gil Peyrot # Date 1491158699 -3600 # Node ID 2d5e0e2938d10af7a68707ace7ad78897d2e4ad7 # Parent 1d734acabd46076a0edf0d356e2ac49b2dc81c53 mod_mam: Remove extraneous assert when opening the store diff -r 1d734acabd46 -r 2d5e0e2938d1 mod_mam/mod_mam.lua --- a/mod_mam/mod_mam.lua Thu Mar 30 23:47:03 2017 +0200 +++ b/mod_mam/mod_mam.lua Sun Apr 02 19:44:59 2017 +0100 @@ -41,7 +41,7 @@ end local archive_store = module:get_option_string("archive_store", "archive2"); -local archive = assert(module:open_store(archive_store, "archive")); +local archive = module:open_store(archive_store, "archive"); if archive.name == "null" or not archive.find then -- luacheck: ignore 631