mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_memory: Fix saving of remaining items during deletion
All data is compiled into functions that return new copies in order to prevent mutation of stored data. This has downsides. Also an ugly hack.
This commit is contained in:
parent
fdbf28899f
commit
94b922ba3f
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ function archive_store:delete(username, query)
|
|||
i = old[i];
|
||||
t = i.when;
|
||||
if not(qstart >= t and qend <= t and (not qwith or i.with == qwith)) then
|
||||
self:append(username, i.key, i.value, t, i.with);
|
||||
self:append(username, i.key, i.value(), t, i.with);
|
||||
end
|
||||
end
|
||||
if #new == 0 then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue