Software /
code /
prosody
Diff
plugins/mod_mam/mod_mam.lua @ 11819:f590e3c51eff
mod_mam: Merge main and RSM-specific log message here too
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 23 Sep 2021 17:55:49 +0200 |
parent | 11795:41af102c7190 |
child | 11875:210a785dfa8a |
line wrap: on
line diff
--- a/plugins/mod_mam/mod_mam.lua Thu Sep 23 17:50:33 2021 +0200 +++ b/plugins/mod_mam/mod_mam.lua Thu Sep 23 17:55:49 2021 +0200 @@ -143,22 +143,22 @@ qstart, qend = vstart, vend; end - module:log("debug", "Archive query by %s id=%s with=%s when=%s...%s", - origin.username, - qid or stanza.attr.id, - qwith or "*", - qstart and timestamp(qstart) or "", - qend and timestamp(qend) or ""); - -- RSM stuff local qset = rsm.get(query); local qmax = m_min(qset and qset.max or default_max_items, max_max_items); local reverse = qset and qset.before or false; local before, after = qset and qset.before or qbefore, qset and qset.after or qafter; if type(before) ~= "string" then before = nil; end - if qset then - module:log("debug", "Archive query id=%s rsm=%q", qid or stanza.attr.id, qset); - end + + + module:log("debug", "Archive query by %s id=%s with=%s when=%s...%s rsm=%q", + origin.username, + qid or stanza.attr.id, + qwith or "*", + qstart and timestamp(qstart) or "", + qend and timestamp(qend) or "", + qset); + -- A reverse query needs to be flipped local flip = reverse; -- A flip-page query needs to be the opposite of that.