diff options
Diffstat (limited to 'synapse/handlers/account.py')
-rw-r--r-- | synapse/handlers/account.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/handlers/account.py b/synapse/handlers/account.py index f8cfe9f6de..d5badf635b 100644 --- a/synapse/handlers/account.py +++ b/synapse/handlers/account.py @@ -23,7 +23,7 @@ if TYPE_CHECKING: class AccountHandler: def __init__(self, hs: "HomeServer"): - self._store = hs.get_datastore() + self._main_store = hs.get_datastores().main self._is_mine = hs.is_mine self._federation_client = hs.get_federation_client() @@ -98,7 +98,7 @@ class AccountHandler: """ status = {"exists": False} - userinfo = await self._store.get_userinfo_by_id(user_id.to_string()) + userinfo = await self._main_store.get_userinfo_by_id(user_id.to_string()) if userinfo is not None: status = { |