Software /
code /
prosody
Changeset
8142:13e075549cb3
mod_storage_internal: Correctly calculate number of deleted items (fixes #912)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 14 May 2017 17:22:33 +0200 |
parents | 8141:03714861f8fc |
children | 8143:c4c159953c72 |
files | plugins/mod_storage_internal.lua |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_storage_internal.lua Wed May 10 19:22:13 2017 +0200 +++ b/plugins/mod_storage_internal.lua Sun May 14 17:22:33 2017 +0200 @@ -141,10 +141,11 @@ local items, err = datamanager.list_load(username, host, self.store); if not items then return items, err; end items = array(items); + local count_before = #items; items:filter(function (item) return item.when > query["end"]; end); - local count = #items; + local count = count_before - #items; local ok, err = datamanager.list_store(username, host, self.store, items); if not ok then return ok, err; end return count;