mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 06:07:17 +00:00
Do not trigger events for updated ring events (#130430)
This commit is contained in:
parent
103a84b4bd
commit
f4798d27c7
@ -96,7 +96,7 @@ class RingEvent(RingBaseEntity[RingListenCoordinator, RingDeviceT], EventEntity)
|
|||||||
|
|
||||||
@callback
|
@callback
|
||||||
def _handle_coordinator_update(self) -> None:
|
def _handle_coordinator_update(self) -> None:
|
||||||
if alert := self._get_coordinator_alert():
|
if (alert := self._get_coordinator_alert()) and not alert.is_update:
|
||||||
self._async_handle_event(alert.kind)
|
self._async_handle_event(alert.kind)
|
||||||
super()._handle_coordinator_update()
|
super()._handle_coordinator_update()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user