Skip to content

Commit

Permalink
fix: Clear version info from entity model number (#82)
Browse files Browse the repository at this point in the history
- clear model info for existing devices (previously set to version / 0.0.0, which is confusing and not helpful).
  • Loading branch information
agittins authored Jan 8, 2024
1 parent f9700d9 commit c1c4325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/bermuda/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def device_info(self):
"identifiers": {(DOMAIN, self._device.unique_id)},
"name": self._device.prefname,
# TODO: Could use this to indicate tracker type (IRK, iBeacon etc).
# "model": "some string",
"model": None,
"manufacturer": NAME,
}

Expand Down

0 comments on commit c1c4325

Please sign in to comment.