diff plugins/mod_storage_memory.lua @ 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 50324f66ca2a
children
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