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 | f9068904294bdc802aec43612d64c80241abe42c (patch) | |
tree | a4c40423f28895cab76f8d09b4ef778bbaf93bed /plugins/mod_mam | |
parent | f6cab5c6d231d4453d83ff1b788cc207370bf3a8 (diff) | |
download | prosody-f9068904294bdc802aec43612d64c80241abe42c.tar.gz prosody-f9068904294bdc802aec43612d64c80241abe42c.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"); |