This commit is contained in:
parent
ec82534a1e
commit
9a3ecc1ac8
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ class WorkflowRunDetailApi(Resource):
|
|||
Get a workflow task running detail
|
||||
"""
|
||||
app_mode = AppMode.value_of(app_model.mode)
|
||||
if app_mode != AppMode.WORKFLOW:
|
||||
if app_mode not in [AppMode.WORKFLOW, AppMode.ADVANCED_CHAT]:
|
||||
raise NotWorkflowAppError()
|
||||
|
||||
workflow_run = db.session.query(WorkflowRun).filter(WorkflowRun.id == workflow_run_id).first()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue