fix chinese encoding (#411)

This commit is contained in:
Jyong
2023-06-19 18:41:17 +08:00
committed by GitHub
parent 54f3bbbf47
commit 36dc05c4da

View File

@@ -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)