mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 06:07:17 +00:00
Added error checking (#29041)
Add in error checking in case disks or volumes are empty.
This commit is contained in:
parent
752a4d7221
commit
63f66785ad
@ -119,24 +119,26 @@ def setup_platform(hass, config, add_entities, discovery_info=None):
|
||||
]
|
||||
|
||||
# Handle all volumes
|
||||
for volume in config.get(CONF_VOLUMES, api.storage.volumes):
|
||||
sensors += [
|
||||
SynoNasStorageSensor(
|
||||
api, name, variable, _STORAGE_VOL_MON_COND[variable], volume
|
||||
)
|
||||
for variable in monitored_conditions
|
||||
if variable in _STORAGE_VOL_MON_COND
|
||||
]
|
||||
if api.storage.volumes is not None:
|
||||
for volume in config.get(CONF_VOLUMES, api.storage.volumes):
|
||||
sensors += [
|
||||
SynoNasStorageSensor(
|
||||
api, name, variable, _STORAGE_VOL_MON_COND[variable], volume
|
||||
)
|
||||
for variable in monitored_conditions
|
||||
if variable in _STORAGE_VOL_MON_COND
|
||||
]
|
||||
|
||||
# Handle all disks
|
||||
for disk in config.get(CONF_DISKS, api.storage.disks):
|
||||
sensors += [
|
||||
SynoNasStorageSensor(
|
||||
api, name, variable, _STORAGE_DSK_MON_COND[variable], disk
|
||||
)
|
||||
for variable in monitored_conditions
|
||||
if variable in _STORAGE_DSK_MON_COND
|
||||
]
|
||||
if api.storage.disks is not None:
|
||||
for disk in config.get(CONF_DISKS, api.storage.disks):
|
||||
sensors += [
|
||||
SynoNasStorageSensor(
|
||||
api, name, variable, _STORAGE_DSK_MON_COND[variable], disk
|
||||
)
|
||||
for variable in monitored_conditions
|
||||
if variable in _STORAGE_DSK_MON_COND
|
||||
]
|
||||
|
||||
add_entities(sensors, True)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user