mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
* except vol.MultipleInvalid in Broadlink #11795 * typo
This commit is contained in:
parent
6d5a87afb6
commit
12dc0db856
@ -129,7 +129,7 @@ class BroadlinkData(object):
|
|||||||
if retry < 1:
|
if retry < 1:
|
||||||
_LOGGER.error(error)
|
_LOGGER.error(error)
|
||||||
return
|
return
|
||||||
except vol.Invalid:
|
except (vol.Invalid, vol.MultipleInvalid):
|
||||||
pass # Continue quietly if device returned malformed data
|
pass # Continue quietly if device returned malformed data
|
||||||
if retry > 0 and self._auth():
|
if retry > 0 and self._auth():
|
||||||
self._update(retry-1)
|
self._update(retry-1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user