Commit aa10bf98 authored by John Wang's avatar John Wang

fix: notion chinese encoding

parent 0039be67
......@@ -139,7 +139,7 @@ class NotionLoader(BaseLoader):
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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment