diff options
author | Erik Johnston <erikj@jki.re> | 2018-02-16 11:52:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-16 11:52:51 +0000 |
commit | bf5ef10a93c0f39c4260b341cc0eca61d143f154 (patch) | |
tree | 2fc05e9438db06f200bee80be9b4d4fff67d5ff1 /synapse/storage/events.py | |
parent | Merge pull request #2873 from matrix-org/erikj/event_creator_no_state (diff) | |
parent | Fix typo of double is_highlight (diff) | |
download | synapse-bf5ef10a93c0f39c4260b341cc0eca61d143f154.tar.xz |
Merge pull request #2874 from matrix-org/erikj/creator_push_actions
Store push actions in DB staging area instead of context
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r-- | synapse/storage/events.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index 28cce2979c..52b7b34749 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -1168,10 +1168,9 @@ class EventsStore(SQLBaseStore): for event, context in events_and_contexts: # Insert all the push actions into the event_push_actions table. - if context.push_actions: - self._set_push_actions_for_event_and_users_txn( - txn, event, context.push_actions - ) + self._set_push_actions_for_event_and_users_txn( + txn, event, + ) if event.type == EventTypes.Redaction and event.redacts is not None: # Remove the entries in the event_push_actions table for the |