0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-10 22:58:53 +02:00

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

Introduced in #13719
This commit is contained in:
Erik Johnston 2022-10-03 14:45:19 +01:00 committed by GitHub
parent cc8a3582e0
commit 2c237debd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/14014.bugfix Normal file
View file

@ -0,0 +1 @@
Send invite push notifications for invite over federation.

View file

@ -2174,7 +2174,7 @@ class PersistEventsStore:
(
(event.event_id,)
for event, _ in all_events_and_contexts
if not event.internal_metadata.is_outlier()
if event.internal_metadata.is_notifiable()
),
)