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

Commit

Permalink
Fix bug where we didn't delete staging push actions (#14014)
Browse files Browse the repository at this point in the history
Introduced in #13719
  • Loading branch information
erikjohnston authored Oct 3, 2022
1 parent cc8a358 commit 2c237de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.d/14014.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Send invite push notifications for invite over federation.
2 changes: 1 addition & 1 deletion synapse/storage/databases/main/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -2174,7 +2174,7 @@ def _set_push_actions_for_event_and_users_txn(
(
(event.event_id,)
for event, _ in all_events_and_contexts
if not event.internal_metadata.is_outlier()
if event.internal_metadata.is_notifiable()
),
)

Expand Down

0 comments on commit 2c237de

Please sign in to comment.