aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-06-10 00:14:34 +0200
committerKim Alvefur <zash@zash.se>2018-06-10 00:14:34 +0200
commit6ed9d2a17dd67e57867b5edb57b1e847201cdf1d (patch)
tree6ee546aefc7ab9795c4117b536012bc5f559779d
parent6c8dfb41641370d1a07bc0b51e8bca792a6b8ec3 (diff)
downloadprosody-6ed9d2a17dd67e57867b5edb57b1e847201cdf1d.tar.gz
prosody-6ed9d2a17dd67e57867b5edb57b1e847201cdf1d.zip
mod_mam: Add coment on how 'complete' works
-rw-r--r--plugins/mod_mam/mod_mam.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua
index 29d4ff7b..2874ac23 100644
--- a/plugins/mod_mam/mod_mam.lua
+++ b/plugins/mod_mam/mod_mam.lua
@@ -168,6 +168,8 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event)
for id, item, when in data do
count = count + 1;
if count > qmax then
+ -- We requested qmax+1 items. If that many items are retrieved then
+ -- there are more results to page through, so:
complete = nil;
break;
end