mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_internal: Only apply truncate if there are more items than requested
This commit is contained in:
parent
31e2ba5f99
commit
5a4e252a6c
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ function archive:delete(username, query)
|
||||||
return item.when > query["end"];
|
return item.when > query["end"];
|
||||||
end);
|
end);
|
||||||
end
|
end
|
||||||
if query.truncate then
|
if query.truncate and #items > query.truncate then
|
||||||
if query.reverse then
|
if query.reverse then
|
||||||
-- Before: { 1, 2, 3, 4, 5, }
|
-- Before: { 1, 2, 3, 4, 5, }
|
||||||
-- After: { 1, 2, 3 }
|
-- After: { 1, 2, 3 }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue