瀏覽代碼

fix Unicode Escape Characters (#15318)

tags/1.0.1
heyszt 7 月之前
父節點
當前提交
a8b600845e
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 1 行新增1 行删除
  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):

Loading…
取消
儲存