Skip to content

Commit

Permalink
fix chinese encoding (langgenius#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnJyong authored and Octivian committed Aug 8, 2023
1 parent 2704732 commit bd09186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/core/data_source/notion.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def query_database_data(
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)

Expand Down

0 comments on commit bd09186

Please sign in to comment.