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

Fix bug where we didn't delete staging push actions #14014

Merged
merged 2 commits into from
Oct 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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