1 files changed, 3 insertions, 4 deletions
diff --git a/synapse/rest/client/v2_alpha/notifications.py b/synapse/rest/client/v2_alpha/notifications.py
index 4d84230e68..f1a48acf07 100644
--- a/synapse/rest/client/v2_alpha/notifications.py
+++ b/synapse/rest/client/v2_alpha/notifications.py
@@ -82,10 +82,9 @@ class NotificationsServlet(RestServlet):
receipt = receipts_by_room[pa["room_id"]]
returned_pa["read"] = (
- receipt["topological_ordering"] >= pa["topological_ordering"] or (
- receipt["topological_ordering"] == pa["topological_ordering"] and
- receipt["stream_ordering"] >= pa["stream_ordering"]
- )
+ receipt["topological_ordering"], receipt["stream_ordering"]
+ ) >= (
+ pa["topological_ordering"], pa["stream_ordering"]
)
returned_push_actions.append(returned_pa)
next_token = pa["stream_ordering"]
|