Skip to content

Commit 512772c

Browse files
authored
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)
1 parent 8281ceb commit 512772c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/apps/conversation_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def rm():
161161

162162
@manager.route("/list", methods=["GET"]) # noqa: F821
163163
@login_required
164-
def list_convsersation():
164+
def list_conversation():
165165
dialog_id = request.args["dialog_id"]
166166
try:
167167
if not DialogService.query(tenant_id=current_user.id, id=dialog_id):

0 commit comments

Comments
 (0)