mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal: Fix keeping old timestamp in archive map API
This led to a missing 'when' field on changed items, which would cause a traceack.
This commit is contained in:
parent
d689f6c9a1
commit
d916ce38f6
2 changed files with 15 additions and 4 deletions
|
@ -234,7 +234,7 @@ function archive:set(username, key, new_value, new_when, new_with)
|
|||
if old_item.key == key then
|
||||
local item = st.preserialize(st.clone(new_value));
|
||||
|
||||
local when = new_when or item.when or datetime.parse(item.attr.stamp);
|
||||
local when = new_when or old_item.when or datetime.parse(old_item.attr.stamp);
|
||||
item.key = key;
|
||||
item.when = when;
|
||||
item.with = new_with or old_item.with;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue