diff options
author | Kim Alvefur <zash@zash.se> | 2018-03-09 21:51:06 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-03-09 21:51:06 +0100 |
commit | fa1406845d82696641d04c0cc8005a416766761d (patch) | |
tree | a4c40423f28895cab76f8d09b4ef778bbaf93bed /plugins/mod_mam | |
parent | 7f55f83d48ed4f5a290863c8d204411cf3e38ece (diff) | |
download | prosody-fa1406845d82696641d04c0cc8005a416766761d.tar.gz prosody-fa1406845d82696641d04c0cc8005a416766761d.zip |
mod_mam: Remove unmatched closing paren
Diffstat (limited to 'plugins/mod_mam')
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index 781a9e62..cf622e0f 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -129,7 +129,7 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event) qstart, qend = vstart, vend; end - module:log("debug", "Archive query, id %s with %s from %s until %s)", + module:log("debug", "Archive query, id %s with %s from %s until %s", tostring(qid), qwith or "anyone", qstart and timestamp(qstart) or "the dawn of time", qend and timestamp(qend) or "now"); |