fix Unicode Escape Characters (#15318)
This commit is contained in:
parent
fcd9fd8513
commit
a8b600845e
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue