diff options
author | Erik Johnston <erik@matrix.org> | 2018-07-25 11:13:20 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-07-25 11:13:20 +0100 |
commit | 7780a7b47ca0fa039886dda8f6ca84bb197e9425 (patch) | |
tree | 4f37dc2e161b56328e789b77bc21497c3da4a5aa /synapse/storage/events.py | |
parent | Fix typo in conditional (diff) | |
download | synapse-7780a7b47ca0fa039886dda8f6ca84bb197e9425.tar.xz |
Actually fix it by adding continue
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r-- | synapse/storage/events.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index 5024c4714d..d7fea0986b 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -581,6 +581,7 @@ class EventsStore(EventsWorkerStore): "Context for new event %s has no state " "group" % (ev.event_id, ), ) + continue if ctx.state_group in state_groups_map: continue |