From a1dd5f7bd1bcd0a241aa5253bf4263ee656c7292 Mon Sep 17 00:00:00 2001 From: frdel <38891707+frdel@users.noreply.github.com> Date: Wed, 25 Mar 2026 18:53:38 +0100 Subject: [PATCH] Revert update check API endpoint from tapi.agent-zero.ai back to api.agent-zero.ai --- helpers/update_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/update_check.py b/helpers/update_check.py index 26b656f83..15df58e12 100644 --- a/helpers/update_check.py +++ b/helpers/update_check.py @@ -11,7 +11,7 @@ async def check_version(): anonymized_id = hashlib.sha256(runtime.get_persistent_id().encode()).hexdigest()[:20] - url = "https://tapi.agent-zero.ai/a0-update-check" + url = "https://api.agent-zero.ai/a0-update-check" payload = {"current_version": current_version, "anonymized_id": anonymized_id} async with httpx.AsyncClient() as client: response = await client.post(url, json=payload)