mod_storage_internal: Only apply truncate if there are more items than requested

This commit is contained in:
Kim Alvefur 2018-08-04 15:44:38 +02:00
parent 31e2ba5f99
commit 5a4e252a6c

View file

@ -191,7 +191,7 @@ function archive:delete(username, query)
return item.when > query["end"];
end);
end
if query.truncate then
if query.truncate and #items > query.truncate then
if query.reverse then
-- Before: { 1, 2, 3, 4, 5, }
-- After: { 1, 2, 3 }