From 19c4a3bb788364a6d107dfb13b948991a918c560 Mon Sep 17 00:00:00 2001 From: Stanislav Novosad Date: Wed, 22 Oct 2025 16:47:08 -0600 Subject: [PATCH] Store empty user_url as None in initialize_task_v2 (#3793) --- skyvern/services/task_v2_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyvern/services/task_v2_service.py b/skyvern/services/task_v2_service.py index 06367f92..aeea2e46 100644 --- a/skyvern/services/task_v2_service.py +++ b/skyvern/services/task_v2_service.py @@ -166,7 +166,7 @@ async def initialize_task_v2( ) -> TaskV2: task_v2 = await app.DATABASE.create_task_v2( prompt=user_prompt, - url=user_url, + url=user_url if user_url else None, organization_id=organization.organization_id, totp_verification_url=totp_verification_url, totp_identifier=totp_identifier,