ソースを参照

fix chinese encoding (#411)

tags/0.3.5
Jyong 2年前
コミット
36dc05c4da
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      api/core/data_source/notion.py

+ 1
- 1
api/core/data_source/notion.py ファイルの表示

@@ -251,7 +251,7 @@ class NotionPageReader(BaseReader):
else:
value = property_value[type]
data[property_name] = value
database_content_list.append(json.dumps(data))
database_content_list.append(json.dumps(data, ensure_ascii=False))

return "\n\n".join(database_content_list)


読み込み中…
キャンセル
保存