mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-12 12:26:54 +08:00
fix chinese encoding (#411)
This commit is contained in:
@@ -251,7 +251,7 @@ class NotionPageReader(BaseReader):
|
|||||||
else:
|
else:
|
||||||
value = property_value[type]
|
value = property_value[type]
|
||||||
data[property_name] = value
|
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)
|
return "\n\n".join(database_content_list)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user