changeset 14194:159047a453f2 13.0

mod_storage_memory: Fix assignment to 'with' when calling archive:set() Copy/paste fail?
author Matthew Wild <mwild1@gmail.com>
date Tue, 26 May 2026 11:52:00 +0100
parents de95e133af8e
children 8d726f5d044a
files plugins/mod_storage_memory.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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