diff options
author | Kim Alvefur <zash@zash.se> | 2017-02-04 01:08:27 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-02-04 01:08:27 +0100 |
commit | e902bcea2ee39bf7fdeda44d9f28dd8c893084d7 (patch) | |
tree | 300927642fc0f857d9ea96ab4b1e2bc2d4c20950 /plugins/mod_mam/mamprefs.lib.lua | |
parent | f01dafc6febdb8e36bfe475853f8e1d4b6ccf8cd (diff) | |
parent | 0e99534951484e5c1ab98897272c92ea6b13f8ff (diff) | |
download | prosody-e902bcea2ee39bf7fdeda44d9f28dd8c893084d7.tar.gz prosody-e902bcea2ee39bf7fdeda44d9f28dd8c893084d7.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_mam/mamprefs.lib.lua')
-rw-r--r-- | plugins/mod_mam/mamprefs.lib.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_mam/mamprefs.lib.lua b/plugins/mod_mam/mamprefs.lib.lua index 054b6861..a561b9d5 100644 --- a/plugins/mod_mam/mamprefs.lib.lua +++ b/plugins/mod_mam/mamprefs.lib.lua @@ -8,6 +8,7 @@ -- -- XEP-0313: Message Archive Management for Prosody -- +-- luacheck: ignore 122/prosody local global_default_policy = module:get_option("default_archive_policy", true); @@ -22,7 +23,7 @@ do }; end -local sessions = hosts[module.host].sessions; +local sessions = prosody.hosts[module.host].sessions; local archive_store = module:get_option_string("archive_store", "archive"); local prefs = module:open_store(archive_store .. "_prefs"); |