Skip to content

Commit

Permalink
fix: append model when name is empty (#1060)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddaddy authored Nov 2, 2024
1 parent 2f2081e commit 8750154
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion custom_components/tesla_custom/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ def __init__(
display_name = car.display_name
vehicle_name = (
display_name
if display_name is not None and display_name != vin[-6:]
if display_name is not None
and display_name != vin[-6:]
and display_name != ""
else f"Tesla Model {str(vin[3]).upper()}"
)
self._attr_device_info = DeviceInfo(
Expand Down

0 comments on commit 8750154

Please sign in to comment.