From a8b600845e84193488164a71069c9313a86a3026 Mon Sep 17 00:00:00 2001 From: heyszt <36215648+hieheihei@users.noreply.github.com> Date: Mon, 10 Mar 2025 09:22:41 +0800 Subject: [PATCH] fix Unicode Escape Characters (#15318) --- api/core/variables/segments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/variables/segments.py b/api/core/variables/segments.py index a9f5651692..64ba16c367 100644 --- a/api/core/variables/segments.py +++ b/api/core/variables/segments.py @@ -136,7 +136,7 @@ class ArrayStringSegment(ArraySegment): @property def text(self) -> str: - return json.dumps(self.value) + return json.dumps(self.value, ensure_ascii=False) class ArrayNumberSegment(ArraySegment):