# HG changeset patch # User Kim Alvefur # Date 1494775353 -7200 # Node ID 13e075549cb360de87ee02d9351d45f65ad40a57 # Parent 03714861f8fccf32a8ae4d16d8153570a4df40ab mod_storage_internal: Correctly calculate number of deleted items (fixes #912) diff -r 03714861f8fc -r 13e075549cb3 plugins/mod_storage_internal.lua --- 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;