From a250376e2bf1bc4e6c7e80cc6ab0bcb9012ffcb7 Mon Sep 17 00:00:00 2001 From: Ian Foster Date: Thu, 8 Jan 2026 14:05:59 -0800 Subject: [PATCH] increase account retrys to help with older airtags inital sync --- findmy/reports/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/findmy/reports/account.py b/findmy/reports/account.py index 5077549..9622807 100644 --- a/findmy/reports/account.py +++ b/findmy/reports/account.py @@ -652,7 +652,7 @@ class AsyncAppleAccount(BaseAppleAccount): # Symptom: HTTP 200 but empty response # Remove when real issue fixed retry_counter = 1 - _max_retries = 5 + _max_retries = 20 while True: resp = await self._http.post( self._ENDPOINT_REPORTS_FETCH,