Allow missing components in safe mode (#102891)
This commit is contained in:
parent
294f565bad
commit
a7183a0cbf
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ async def async_check_ha_config_file( # noqa: C901
|
|||
)
|
||||
platform = p_integration.get_platform(domain)
|
||||
except loader.IntegrationNotFound as ex:
|
||||
if not hass.config.recovery_mode:
|
||||
if not hass.config.recovery_mode and not hass.config.safe_mode:
|
||||
result.add_error(f"Platform error {domain}.{p_name} - {ex}")
|
||||
continue
|
||||
except (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue