diff --git a/custom_components/audiconnect/audi_services.py b/custom_components/audiconnect/audi_services.py index bfb3d1fd..b9a10b55 100644 --- a/custom_components/audiconnect/audi_services.py +++ b/custom_components/audiconnect/audi_services.py @@ -250,7 +250,7 @@ async def get_vehicle_information(self): } req_rsp, rep_rsptxt = await self._api.request( "POST", - "https://app-api.my.aoa.audi.com/vgql/v1/graphql" if self._country.upper()=="US" else "https://app-api.live-my.audi.com/vgql/v1/graphql", # Starting in 2023, US users need to point at the aoa (Audi of America) URL. + if self._country.upper()=="US" else "https://app-api.live-my.audi.com/vgql/v1/graphql", # Starting in 2023, US users need to point at the aoa (Audi of America) URL. json.dumps(req_data), headers=headers, allow_redirects=False,