diff options
author | Kim Alvefur <zash@zash.se> | 2017-05-14 17:22:33 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-05-14 17:22:33 +0200 |
commit | 83741da83af1f361605aeba6f3c884fcfa5fc755 (patch) | |
tree | b841013869c1a21d3603e13512322e9ed22c05f7 /plugins/mod_storage_internal.lua | |
parent | 0c64cd26d6f9730ad145511f5edbe3c0b4767eb2 (diff) | |
download | prosody-83741da83af1f361605aeba6f3c884fcfa5fc755.tar.gz prosody-83741da83af1f361605aeba6f3c884fcfa5fc755.zip |
mod_storage_internal: Correctly calculate number of deleted items (fixes #912)
Diffstat (limited to 'plugins/mod_storage_internal.lua')
-rw-r--r-- | plugins/mod_storage_internal.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua index 21a63c95..94d73af7 100644 --- a/plugins/mod_storage_internal.lua +++ b/plugins/mod_storage_internal.lua @@ -141,10 +141,11 @@ function archive:delete(username, query) 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; |