diff options
author | Erik Johnston <erik@matrix.org> | 2022-10-03 14:45:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 13:45:19 +0000 |
commit | 2c237debd3476bcc45a76e360b0cb33032b23045 (patch) | |
tree | f2fa1975e8a4f1d0c16d87182b644d2509590889 /synapse | |
parent | Try again to automate dependabot changelogs (#14017) (diff) | |
download | synapse-2c237debd3476bcc45a76e360b0cb33032b23045.tar.xz |
Fix bug where we didn't delete staging push actions (#14014)
Introduced in #13719
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/databases/main/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/events.py b/synapse/storage/databases/main/events.py index bb489b8189..3e15827986 100644 --- a/synapse/storage/databases/main/events.py +++ b/synapse/storage/databases/main/events.py @@ -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() ), ) |