Skip to content

Commit

Permalink
Bug fix version 3.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
scottyphillips committed Mar 11, 2022
1 parent b7ea402 commit 8f61e36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/echonetlite/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"codeowners": [
"@scottyphillips"
],
"version": "3.4.3",
"version": "3.4.4",
"iot_class": "local_polling"
}
4 changes: 4 additions & 0 deletions custom_components/echonetlite/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ async def async_setup_entry(hass, config, async_add_entities, discovery_info=Non
entities.append(
EchonetSensor(entity['echonetlite'], op_code, ENL_SENSOR_OP_CODES['default'], config.title)
)
elif op_code in list(entity['echonetlite']._update_flags_full_list):
entities.append(
EchonetSensor(entity['echonetlite'], op_code, ENL_SENSOR_OP_CODES['default'], config.title)
)
elif op_code in list(entity['echonetlite']._update_flags_full_list):
entities.append(
EchonetSensor(entity['echonetlite'], op_code, ENL_SENSOR_OP_CODES['default'], config.title)
Expand Down

0 comments on commit 8f61e36

Please sign in to comment.