mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal: Skip write if no items matched a deletion query
This commit is contained in:
parent
f7d98fa513
commit
b158553c43
1 changed files with 3 additions and 0 deletions
|
@ -209,6 +209,9 @@ function archive:delete(username, query)
|
|||
end
|
||||
end
|
||||
local count = count_before - #items;
|
||||
if count == 0 then
|
||||
return 0; -- No changes, skip write
|
||||
end
|
||||
local ok, err = datamanager.list_store(username, host, self.store, items);
|
||||
if not ok then return ok, err; end
|
||||
return count;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue