mirror of
https://github.com/home-assistant/core.git
synced 2025-07-14 16:57:10 +00:00
Set ping data to None instead of False (#65013)
This commit is contained in:
parent
c831270262
commit
03e369dc86
@ -140,7 +140,7 @@ class PingBinarySensor(RestoreEntity, BinarySensorEntity):
|
|||||||
self._available = True
|
self._available = True
|
||||||
|
|
||||||
if last_state is None or last_state.state != STATE_ON:
|
if last_state is None or last_state.state != STATE_ON:
|
||||||
self._ping.data = False
|
self._ping.data = None
|
||||||
return
|
return
|
||||||
|
|
||||||
attributes = last_state.attributes
|
attributes = last_state.attributes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user