make task block title empty string by default; use task_block.label for the running task.title if task_block.title is empty (#1181)

This commit is contained in:
Shuchang Zheng
2024-11-12 20:34:26 -08:00
committed by GitHub
parent 9f3af2555c
commit 11909cb1a7
3 changed files with 3 additions and 3 deletions

View File

@@ -131,7 +131,7 @@ class ForgeAgent:
task_url = validate_url(task_url)
task = await app.DATABASE.create_task(
url=task_url,
title=task_block.title,
title=task_block.title or task_block.label,
webhook_callback_url=None,
totp_verification_url=task_block.totp_verification_url,
totp_identifier=task_block.totp_identifier,