mod_storage_internal: Skip write if no items matched a deletion query

This commit is contained in:
Kim Alvefur 2017-11-19 21:00:43 +01:00
parent f7d98fa513
commit b158553c43

View file

@ -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;