Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: append model when name is empty #1060

Merged
merged 2 commits into from
Nov 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading