Skip to content

Commit

Permalink
Fix sensor
Browse files Browse the repository at this point in the history
  • Loading branch information
hmmbob authored Dec 5, 2021
1 parent dfaffff commit 6301590
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions custom_components/spotcast/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,11 @@ def update(self):

chromecasts = [
{
"host": "deprecated",
"port": "deprecated",
"uuid": cast_info.uuid,
"model_name": cast_info.model_name,
"name": cast_info.friendly_name,
"manufacturer": cast_info.manufacturer,
"uuid": str(cast_info.cast_info.uuid),
"model_name": cast_info.cast_info.model_name,
"name": cast_info.cast_info.friendly_name,
"manufacturer": cast_info.cast_info.manufacturer,
"cast_type": cast_info.cast_info.cast_type,
}
for cast_info in known_devices
]
Expand Down

0 comments on commit 6301590

Please sign in to comment.