Skip to content

Commit

Permalink
Fix send_poi URL
Browse files Browse the repository at this point in the history
  • Loading branch information
rikroe committed Aug 15, 2021
1 parent a11fd1b commit b83d84b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bimmer_connected/remote_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,8 @@ def trigger_send_poi(self, data: dict) -> RemoteServiceStatus:
"vin": self._vehicle.vin
})
self._account.send_request_v2(
VEHICLE_EADRAX_POI_URL,
VEHICLE_EADRAX_POI_URL.format(server=self._account.server_url_eadrax),
post=True,
headers={"Content-Type": "application/json"},
data=data_json
)
Expand Down

0 comments on commit b83d84b

Please sign in to comment.