You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
In the Skodaconnect version the device_tracker icon shows the image that is available from the API.
I think this part of the code in the init.py is getting this image:
`
if "position" in self.attribute:
# Try to use small thumbnail first hand, else fallback to fullsize
if self.vehicle.is_model_image_small_supported:
attributes["entity_picture"] = self.vehicle.model_image_small
elif self.vehicle.is_model_image_large_supported:
attributes["entity_picture"] = self.vehicle.model_image_large
return attributes
`
The text was updated successfully, but these errors were encountered:
In the Skodaconnect version the device_tracker icon shows the image that is available from the API.
I think this part of the code in the init.py is getting this image:
`
`
The text was updated successfully, but these errors were encountered: