diff options
author | Kim Alvefur <zash@zash.se> | 2018-06-09 23:57:58 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-06-09 23:57:58 +0200 |
commit | 48a65eed674c570184ea6b834560980c78c0b377 (patch) | |
tree | 021df3c92229383fb23f2a1dde96ba1a5fd78033 /plugins | |
parent | 5ae35f54cc69163c9d0c0f3e9bb40b07542af9c0 (diff) | |
download | prosody-48a65eed674c570184ea6b834560980c78c0b377.tar.gz prosody-48a65eed674c570184ea6b834560980c78c0b377.zip |
mod_mam: Handle edge-case of max=0 so that complete attr is set (fixes #1128)
Diffstat (limited to 'plugins')
-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 cf622e0f..29d4ff7b 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -145,7 +145,7 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event) local data, err = archive:find(origin.username, { start = qstart; ["end"] = qend; -- Time range with = qwith; - limit = qmax + 1; + limit = qmax == 0 and 0 or qmax + 1; before = before; after = after; reverse = reverse; total = use_total or qmax == 0; |