From 512772c45a4502a5ae3da9e26ae0c8ab7d56e42c Mon Sep 17 00:00:00 2001 From: haol Date: Thu, 10 Jul 2025 14:32:28 +0800 Subject: [PATCH] Fix: Resolve typo in /list route function (#8769) ### What problem does this PR solve? Fixes a function name typo for the `/list` route in `api/apps/conversation_app.py`. ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- api/apps/conversation_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/apps/conversation_app.py b/api/apps/conversation_app.py index 5ba39716f..16d67bc57 100644 --- a/api/apps/conversation_app.py +++ b/api/apps/conversation_app.py @@ -161,7 +161,7 @@ def rm(): @manager.route("/list", methods=["GET"]) # noqa: F821 @login_required -def list_convsersation(): +def list_conversation(): dialog_id = request.args["dialog_id"] try: if not DialogService.query(tenant_id=current_user.id, id=dialog_id):