# HG changeset patch # User Matthew Wild # Date 1753198496 -3600 # Node ID 7761360ffb7b3cfa4fde3f08fcd12f6717af1562 # Parent 1bc4e7ab964c1e4afccc52a1eb76bdc5c5226933# Parent 9a69918b5e635518381d26c6ae25935ba664b175 Merge 13.0->trunk diff -r 1bc4e7ab964c -r 7761360ffb7b plugins/mod_storage_sql.lua --- a/plugins/mod_storage_sql.lua Mon Jul 14 16:44:10 2025 +0200 +++ b/plugins/mod_storage_sql.lua Tue Jul 22 16:34:56 2025 +0100 @@ -556,7 +556,7 @@ if new_value then table.insert(setf, '"type" = ?') table.insert(setf, '"value" = ?') - local t, value = serialize(new_value); + local t, value = assert(serialize(new_value)); table.insert(args, 1, t); table.insert(args, 2, value); end