Increase Apple Music API client timeout to 60s

This commit is contained in:
Rafael Moraes
2025-11-11 22:02:14 -03:00
parent 00d301c23d
commit c31a6eee8e
+1 -1
View File
@@ -86,7 +86,7 @@ class AppleMusicApi:
},
follow_redirects=True,
transport=httpx.AsyncHTTPTransport(retries=10),
timeout=30.0,
timeout=60.0,
)
async def _setup_token(self) -> None: