# HG changeset patch # User Matthew Wild # Date 1779792720 -3600 # Node ID 159047a453f218fc4a1ed47a2a5e19fd29bfa55d # Parent de95e133af8e4004b0279d66db7fdbe560e731d0 mod_storage_memory: Fix assignment to 'with' when calling archive:set() Copy/paste fail? diff -r de95e133af8e -r 159047a453f2 plugins/mod_storage_memory.lua --- a/plugins/mod_storage_memory.lua Tue May 26 11:50:20 2026 +0100 +++ b/plugins/mod_storage_memory.lua Tue May 26 11:52:00 2026 +0100 @@ -206,7 +206,7 @@ item.when = new_when; end if new_with then - item.with = new_when; + item.with = new_with; end return true; end