瀏覽代碼

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)
tags/v0.20.0
haol 3 月之前
父節點
當前提交
512772c45a
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      api/apps/conversation_app.py

+ 1
- 1
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):

Loading…
取消
儲存