diff options
author | Shay <hillerys@element.io> | 2022-10-21 10:46:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 10:46:22 -0700 |
commit | b7a7ff6ee39da4981dcfdce61bf8ac4735e3d047 (patch) | |
tree | ffb8111e4d242f7fffe35a545c1c59cc51089241 /synapse/handlers/message.py | |
parent | Improve aesthetics and reusability of HTML templates. (#13652) (diff) | |
download | synapse-b7a7ff6ee39da4981dcfdce61bf8ac4735e3d047.tar.xz |
Add initial power level event to batch of bulk persisted events when creating a new room. (#14228)
Diffstat (limited to 'synapse/handlers/message.py')
-rw-r--r-- | synapse/handlers/message.py | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py index 15b828dd74..468900a07f 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py @@ -1433,17 +1433,9 @@ class EventCreationHandler: a room that has been un-partial stated. """ - for event, context in events_and_context: - # Skip push notification actions for historical messages - # because we don't want to notify people about old history back in time. - # The historical messages also do not have the proper `context.current_state_ids` - # and `state_groups` because they have `prev_events` that aren't persisted yet - # (historical messages persisted in reverse-chronological order). - if not event.internal_metadata.is_historical(): - with opentracing.start_active_span("calculate_push_actions"): - await self._bulk_push_rule_evaluator.action_for_event_by_user( - event, context - ) + await self._bulk_push_rule_evaluator.action_for_events_by_user( + events_and_context + ) try: # If we're a worker we need to hit out to the master. |