diff options
author | Azrenbeth <77782548+Azrenbeth@users.noreply.github.com> | 2021-08-17 14:22:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-17 13:22:45 +0000 |
commit | 1a9f531c79f8a043db6f151c5393f23aa5675800 (patch) | |
tree | e0e6672133623495110e0ccec2754eaf14aa3540 /synapse/app | |
parent | Stop setting the outlier flag for things that aren't (#10614) (diff) | |
download | synapse-1a9f531c79f8a043db6f151c5393f23aa5675800.tar.xz |
Port the PresenceRouter module interface to the new generic interface (#10524)
Port the PresenceRouter module interface to the new generic interface introduced in v1.37.0
Diffstat (limited to 'synapse/app')
-rw-r--r-- | synapse/app/_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/app/_base.py b/synapse/app/_base.py index 50a02f51f5..39e28aff9f 100644 --- a/synapse/app/_base.py +++ b/synapse/app/_base.py @@ -37,6 +37,7 @@ from synapse.app import check_bind_error from synapse.app.phone_stats_home import start_phone_stats_home from synapse.config.homeserver import HomeServerConfig from synapse.crypto import context_factory +from synapse.events.presence_router import load_legacy_presence_router from synapse.events.spamcheck import load_legacy_spam_checkers from synapse.events.third_party_rules import load_legacy_third_party_event_rules from synapse.logging.context import PreserveLoggingContext @@ -370,6 +371,7 @@ async def start(hs: "HomeServer"): load_legacy_spam_checkers(hs) load_legacy_third_party_event_rules(hs) + load_legacy_presence_router(hs) # If we've configured an expiry time for caches, start the background job now. setup_expire_lru_cache_entries(hs) |