Only add rows to the push actions table if the event notifies or should be marked unread (#8274)
parent
ef2804d27c
commit
d8762cc116
|
@ -0,0 +1 @@
|
||||||
|
Add unread messages count to sync responses, as specified in [MSC2654](https://github.com/matrix-org/matrix-doc/pull/2654).
|
|
@ -219,6 +219,11 @@ class BulkPushRuleEvaluator:
|
||||||
if event.type == EventTypes.Member and event.state_key == uid:
|
if event.type == EventTypes.Member and event.state_key == uid:
|
||||||
display_name = event.content.get("displayname", None)
|
display_name = event.content.get("displayname", None)
|
||||||
|
|
||||||
|
if count_as_unread:
|
||||||
|
# Add an element for the current user if the event needs to be marked as
|
||||||
|
# unread, so that add_push_actions_to_staging iterates over it.
|
||||||
|
# If the event shouldn't be marked as unread but should notify the
|
||||||
|
# current user, it'll be added to the dict later.
|
||||||
actions_by_user[uid] = []
|
actions_by_user[uid] = []
|
||||||
|
|
||||||
for rule in rules:
|
for rule in rules:
|
||||||
|
|
Loading…
Reference in New Issue