Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions homeassistant/components/hassio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,10 @@ async def async_check_config(hass):
result = await hassio.check_homeassistant_config()
except HassioAPIError as err:
_LOGGER.error("Error on Hass.io API: %s", err)
else
Comment thread
pvizeli marked this conversation as resolved.
Outdated
if result['result'] == "error":
Comment thread
balloob marked this conversation as resolved.
return result['message']

if result['result'] == "error":
return result['message']
return None


Expand Down