Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 2c237de

Browse files
authored
Fix bug where we didn't delete staging push actions (#14014)
Introduced in #13719
1 parent cc8a358 commit 2c237de

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changelog.d/14014.bugfix

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Send invite push notifications for invite over federation.

synapse/storage/databases/main/events.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2174,7 +2174,7 @@ def _set_push_actions_for_event_and_users_txn(
21742174
(
21752175
(event.event_id,)
21762176
for event, _ in all_events_and_contexts
2177-
if not event.internal_metadata.is_outlier()
2177+
if event.internal_metadata.is_notifiable()
21782178
),
21792179
)
21802180

0 commit comments

Comments
 (0)