diff options
author | Erik Johnston <erik@matrix.org> | 2018-07-25 09:48:01 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-07-25 09:48:01 +0100 |
commit | a297ff2b16094f358cc8432f1db660ca539f8b4d (patch) | |
tree | c91452bb8cd8eeff5b0062c833c2cdf2fff24fa1 /synapse/storage/events.py | |
parent | Newsfile (diff) | |
download | synapse-a297ff2b16094f358cc8432f1db660ca539f8b4d.tar.xz |
Fix typo in conditional
Diffstat (limited to 'synapse/storage/events.py')
-rw-r--r-- | synapse/storage/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/events.py b/synapse/storage/events.py index bd05f23b06..5024c4714d 100644 --- a/synapse/storage/events.py +++ b/synapse/storage/events.py @@ -576,7 +576,7 @@ class EventsStore(EventsWorkerStore): for ev, ctx in events_context: if ctx.state_group is None: # This should only happen for outlier events. - if not event.internal_metadata.is_outlier(): + if not ev.internal_metadata.is_outlier(): raise Exception( "Context for new event %s has no state " "group" % (ev.event_id, ), |