diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-05-17 15:58:46 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-05-17 15:58:46 +0100 |
commit | 0cb441fedd77b42f307745a441b804fee6386cb5 (patch) | |
tree | 5b240661fd780a583871812dd606491c1b38683f /synapse/replication | |
parent | Merge pull request #791 from matrix-org/markjh/app_service_config (diff) | |
download | synapse-0cb441fedd77b42f307745a441b804fee6386cb5.tar.xz |
Move typing handler out of the Handlers object
Diffstat (limited to 'synapse/replication')
-rw-r--r-- | synapse/replication/resource.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/resource.py b/synapse/replication/resource.py index b0e7a17670..847f212a3d 100644 --- a/synapse/replication/resource.py +++ b/synapse/replication/resource.py @@ -110,7 +110,7 @@ class ReplicationResource(Resource): self.store = hs.get_datastore() self.sources = hs.get_event_sources() self.presence_handler = hs.get_presence_handler() - self.typing_handler = hs.get_handlers().typing_notification_handler + self.typing_handler = hs.get_typing_handler() self.notifier = hs.notifier self.clock = hs.get_clock() |