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 | 7dece5bcba14f2a7625ce0b22e4bb157365f7777 (patch) | |
tree | bcabe932b97e8da72d87fc6eb8ac21a9dcac3492 /plugins/mod_mam/mod_mam.lua | |
parent | 8932b4d9c9aabe6f58c0d07831fa08f296c73f08 (diff) | |
download | prosody-7dece5bcba14f2a7625ce0b22e4bb157365f7777.tar.gz prosody-7dece5bcba14f2a7625ce0b22e4bb157365f7777.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; |