Explorar el Código

fix Unicode Escape Characters (#15318)

heyszt hace 7 meses
padre
commit
a8b600845e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      api/core/variables/segments.py

+ 1 - 1
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):