Update mcp_server_cli.py

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Dominik Fretz
2025-08-27 10:00:20 +10:00
committed by GitHub
parent e22fa4783c
commit c9ac202bcd

View File

@@ -894,7 +894,11 @@ class MCPServer:
description = arguments.get("description") description = arguments.get("description")
assignee_ids = arguments.get("assignee_ids") assignee_ids = arguments.get("assignee_ids")
completion_subscriber_ids = arguments.get("completion_subscriber_ids") completion_subscriber_ids = arguments.get("completion_subscriber_ids")
notify = bool(arguments.get("notify", False)) notify_arg = arguments.get("notify", False)
if isinstance(notify_arg, str):
notify = notify_arg.strip().lower() in ("1", "true", "yes", "on")
else:
notify = bool(notify_arg)
due_on = arguments.get("due_on") due_on = arguments.get("due_on")
starts_on = arguments.get("starts_on") starts_on = arguments.get("starts_on")