diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-25 21:59:17 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-25 21:59:17 +0200 |
commit | f179d7fe1c8430dcb795fb624bed461a3d335f6a (patch) | |
tree | bcabe932b97e8da72d87fc6eb8ac21a9dcac3492 /plugins/mod_mam/mod_mam.lua | |
parent | e2910e8847447c782b90c7919d8b58d6c0469919 (diff) | |
download | prosody-f179d7fe1c8430dcb795fb624bed461a3d335f6a.tar.gz prosody-f179d7fe1c8430dcb795fb624bed461a3d335f6a.zip |
mod_mam: Remove embedded fallback archive driver (fixes #972)
It was equivalent to mod_storage_memory, which is included as a separate module now.
Diffstat (limited to 'plugins/mod_mam/mod_mam.lua')
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index cb4b686b..94bedbb1 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -44,7 +44,6 @@ if not archive.find then error("mod_"..(archive._provided_by or archive.name and "storage_"..archive.name).." does not support archiving\n" .."See https://prosody.im/doc/storage and https://prosody.im/doc/archiving for more information"); end - local use_total = module:get_option_boolean("mam_include_total", true); local cleanup; |