diff options
author | Erik Johnston <erik@matrix.org> | 2014-12-04 15:50:01 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-12-04 15:50:01 +0000 |
commit | c31dba86ec40853f27c70ae13409ca3332052cc1 (patch) | |
tree | ab5a11519590c3c8e2211aedd2b441a7ccc759d5 /synapse/rest/base.py | |
parent | Begin converting things to use the new Event structure (diff) | |
download | synapse-c31dba86ec40853f27c70ae13409ca3332052cc1.tar.xz |
Convert rest and handlers to use new event structure
Diffstat (limited to 'synapse/rest/base.py')
-rw-r--r-- | synapse/rest/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/base.py b/synapse/rest/base.py index 79fc4dfb84..72bb66ddda 100644 --- a/synapse/rest/base.py +++ b/synapse/rest/base.py @@ -63,7 +63,7 @@ class RestServlet(object): self.hs = hs self.handlers = hs.get_handlers() - self.event_factory = hs.get_event_factory() + self.builder_factory = hs.get_event_builder_factory() self.auth = hs.get_auth() self.txns = HttpTransactionStore() |