8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8880ab6 commit 41a140dCopy full SHA for 41a140d
homeassistant/components/google_travel_time/sensor.py
@@ -275,6 +275,7 @@ async def async_update(self) -> None:
275
response = await self._client.compute_routes(
276
request, metadata=[("x-goog-fieldmask", FIELD_MASK)]
277
)
278
+ _LOGGER.debug("Received response: %s", response)
279
if response is not None and len(response.routes) > 0:
280
self._route = response.routes[0]
281
delete_routes_api_disabled_issue(self.hass, self._config_entry)
0 commit comments