Software /
code /
prosody
Comparison
plugins/mod_muc_mam.lua @ 11816:eff0eeece24d
mod_muc_mam: Fix copypaste mistake in debug logging
This line was copied from mod_mam, where `origin.username` made sense,
less so here.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 23 Sep 2021 15:25:51 +0200 |
parent | 11744:5f99aa6bb76d |
child | 11817:a67b4d4f8eef |
comparison
equal
deleted
inserted
replaced
11815:df1d3df2204a | 11816:eff0eeece24d |
---|---|
174 end | 174 end |
175 qstart, qend = vstart, vend; | 175 qstart, qend = vstart, vend; |
176 end | 176 end |
177 | 177 |
178 module:log("debug", "Archive query by %s id=%s when=%s...%s", | 178 module:log("debug", "Archive query by %s id=%s when=%s...%s", |
179 origin.username, | 179 from, |
180 qid or stanza.attr.id, | 180 qid or stanza.attr.id, |
181 qstart and timestamp(qstart) or "", | 181 qstart and timestamp(qstart) or "", |
182 qend and timestamp(qend) or ""); | 182 qend and timestamp(qend) or ""); |
183 | 183 |
184 -- RSM stuff | 184 -- RSM stuff |