Revert update check API endpoint from tapi.agent-zero.ai back to api.agent-zero.ai
frdel committed
Mar 25, 2026 at 18:53 UTC
a1dd5f7bd1bcd0a241aa5253bf4263ee656c7292
1 file changed
+1
-1
helpers/update_check.py
+1
-1
@@ -11,7 +11,7 @@ async def check_version():
11
12
anonymized_id = hashlib.sha256(runtime.get_persistent_id().encode()).hexdigest()[:20]
13
14
- url = "https://tapi.agent-zero.ai/a0-update-check"
14
+ url = "https://api.agent-zero.ai/a0-update-check"
15
payload = {"current_version": current_version, "anonymized_id": anonymized_id}
16
async with httpx.AsyncClient() as client:
17
response = await client.post(url, json=payload)