fix: flask ensure ascii.

This commit is contained in:
7a1dd609-d238-4580-9d5f-ee8412b0f5bc 2025-01-15 23:33:34 +08:00
parent db007f7d7f
commit 30a7ab684e

View File

@ -59,6 +59,7 @@ def item(item_data, user_character_list):
app = Flask(__name__)
app.json.sort_keys = False
app.json.ensure_ascii = False
CORS(app)
@app.errorhandler(404)