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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)