Co-Authored-By: Zixin Yu <183055163+ivvi0927@users.noreply.github.com>
This commit is contained in:
Timothy Jaeryang Baek
2026-06-01 12:37:34 -07:00
parent fd76b51ab2
commit e3ab4bd212
+1 -1
View File
@@ -711,7 +711,7 @@ def sanitize_data_for_db(obj):
# json.dumps is implemented in C and much faster than a Python-level
# recursive walk over every leaf string.
try:
if '\x00' not in json.dumps(obj, ensure_ascii=False):
if '\\u0000' not in json.dumps(obj, ensure_ascii=False):
return obj
except (TypeError, ValueError):
pass