Automatic Device Tracker Bug Fix (#3330)
* Iterate over items * Pass display name as host name
This commit is contained in:
parent
26abe83be5
commit
360a650370
2 changed files with 3 additions and 1 deletions
|
@ -338,7 +338,7 @@ class Device(Entity):
|
|||
attr[ATTR_BATTERY] = self.battery
|
||||
|
||||
if self.attributes:
|
||||
for key, value in self.attributes:
|
||||
for key, value in self.attributes.items():
|
||||
attr[key] = value
|
||||
|
||||
return attr
|
||||
|
|
|
@ -142,6 +142,7 @@ class AutomaticDeviceScanner(object):
|
|||
|
||||
for vehicle in self.last_results:
|
||||
dev_id = vehicle.get('id')
|
||||
host_name = vehicle.get('display_name')
|
||||
|
||||
attrs = {
|
||||
'fuel_level': vehicle.get('fuel_level_percent')
|
||||
|
@ -149,6 +150,7 @@ class AutomaticDeviceScanner(object):
|
|||
|
||||
kwargs = {
|
||||
'dev_id': dev_id,
|
||||
'host_name': host_name,
|
||||
'mac': dev_id,
|
||||
ATTR_ATTRIBUTES: attrs
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue