diff options
author | Kim Alvefur <zash@zash.se> | 2020-05-15 20:55:22 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-05-15 20:55:22 +0200 |
commit | d916ce38f6b434552a5ebd2a1751286da9cf2d69 (patch) | |
tree | 59de3908c95b1c65ede2ac695a19ee43eeaa2a0d /plugins | |
parent | d689f6c9a103215f7ce2b23aca163c21a63a4ce3 (diff) | |
download | prosody-d916ce38f6b434552a5ebd2a1751286da9cf2d69.tar.gz prosody-d916ce38f6b434552a5ebd2a1751286da9cf2d69.zip |
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.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_storage_internal.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua index 586ea10f..472ec642 100644 --- a/plugins/mod_storage_internal.lua +++ b/plugins/mod_storage_internal.lua @@ -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; |