mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-13 13:48:58 +08:00
fix chinese encoding (#411)
This commit is contained in:
parent
54f3bbbf47
commit
36dc05c4da
@ -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)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user