Software /
code /
prosody-modules
Diff
mod_http_muc_log/mod_http_muc_log.lua @ 1571:eed7db9f3157
mod_mam_muc, mod_http_muc_log: Change store name from 'archive2' to 'muc_log' to distinguish it from personal MAM archives. Old data will require migration.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 18 Nov 2014 13:59:39 +0100 |
parent | 1564:cb4111a4cd36 |
child | 1575:464ed6bc5a73 |
line wrap: on
line diff
--- a/mod_http_muc_log/mod_http_muc_log.lua Tue Nov 18 13:05:04 2014 +0100 +++ b/mod_http_muc_log/mod_http_muc_log.lua Tue Nov 18 13:59:39 2014 +0100 @@ -6,7 +6,7 @@ local it = require"util.iterators"; local gettime = require"socket".gettime; -local archive = module:open_store("archive2", "archive"); +local archive = module:open_store("muc_log", "archive"); -- Support both old and new MUC code local mod_muc = module:depends"muc";