Skip to content

Commit

Permalink
Ensure flume sees the most recent notifications (home-assistant#120290)
Browse files Browse the repository at this point in the history
  • Loading branch information
tronikos authored Jun 24, 2024
1 parent 0dff7e8 commit deee108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/flume/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def _update_lists(self) -> None:
# The related binary sensors (leak detected, high flow, low battery)
# will be active until the notification is deleted in the Flume app.
self.notifications = pyflume.FlumeNotificationList(
self.auth, read=None
self.auth, read=None, sort_direction="DESC"
).notification_list
_LOGGER.debug("Notifications %s", self.notifications)

Expand Down

0 comments on commit deee108

Please sign in to comment.