mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 09:17:10 +00:00
Merge pull request #770 from philipbl/fix_icloud
Small iCloud device tracker fix
This commit is contained in:
commit
4196d6a21c
@ -32,7 +32,7 @@ def setup_scanner(hass, config, see):
|
|||||||
|
|
||||||
if username is None or password is None:
|
if username is None or password is None:
|
||||||
_LOGGER.error('Must specify a username and password')
|
_LOGGER.error('Must specify a username and password')
|
||||||
return
|
return False
|
||||||
|
|
||||||
try:
|
try:
|
||||||
_LOGGER.info('Logging into iCloud Account')
|
_LOGGER.info('Logging into iCloud Account')
|
||||||
@ -42,7 +42,7 @@ def setup_scanner(hass, config, see):
|
|||||||
verify=True)
|
verify=True)
|
||||||
except PyiCloudFailedLoginException as error:
|
except PyiCloudFailedLoginException as error:
|
||||||
_LOGGER.exception('Error logging into iCloud Service: %s', error)
|
_LOGGER.exception('Error logging into iCloud Service: %s', error)
|
||||||
return
|
return False
|
||||||
|
|
||||||
def keep_alive(now):
|
def keep_alive(now):
|
||||||
""" Keeps authenticating iCloud connection. """
|
""" Keeps authenticating iCloud connection. """
|
||||||
@ -83,3 +83,5 @@ def setup_scanner(hass, config, see):
|
|||||||
minute=range(0, 60, config.get(CONF_INTERVAL, DEFAULT_INTERVAL)),
|
minute=range(0, 60, config.get(CONF_INTERVAL, DEFAULT_INTERVAL)),
|
||||||
second=0
|
second=0
|
||||||
)
|
)
|
||||||
|
|
||||||
|
return True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user